Krzysztof Langner

Results 12 comments of Krzysztof Langner

I see. Do you think it make sense to add new a function inner_product() to this library? Or it is rather out of scope for this library? BTW: I know...

What is this ticket about?

My main.rs is taken from the book: ``` #![no_std] #![no_main] extern crate pg; #[inline(never)] #[no_mangle] pub fn main() -> ! { let y; let x = 42; y = x;...

Also this is how the _reset function looks like: ``` 08000040 : 8000040: b580 push {r7, lr} 8000042: 466f mov r7, sp 8000044: b082 sub sp, #8 8000046: e7ff b.n...

I'm not sure if it is related to this issue. I would rather guess that the problem is with the **core** library. I can make the program running by putting...

No. I'm on Linux (Ubuntu). Currently I'm following the blog http://hannobraun.de/embedded/ and learning about Rust and embedded development. So far so good. I hope to solve this problem as soon...

Yes it makes sense. I would postpone it till Rust 2018 and we need linear algebra library with Complex number support.

Yes we did talk about it. Regarding the issue, I'm not sure what is needed. Not sure if all libraries will work, e.g. FFT. I think this require some more...

Yes it makes sense. In this context I though about doing FFT on the whole signal. This can be useful in some context (like bio signals). But overlap-add FFT sounds...

Hi. Is there any way to parse partial dates in the current version? Or maybe there is external crate for this? I need to parse dates like "1956-01" which are...