chipmuenk / pyfda

Python Filter Design Analysis Tool
http://chipmuenk.github.io/
MIT License
649 stars 93 forks source link

Possible to simulate performance of an IIR using single precision float? #101

Closed whoopsmith closed 6 years ago

whoopsmith commented 6 years ago

I have some IIR filters that are currently running with double precision math. I'd like to move them to CMSIS DSP assisted f32() functions on a cortexM4 with an FPU but I'm worried what its going to do to the filter performance. Is there a way to simulate this with pyFDA.

I see the fixed point stuff but I don't see anything that looks like its a single precision float.

chipmuenk commented 6 years ago

You are right, single precision float isn't implemented yet. Your question is actually two questions :-)

whoopsmith commented 6 years ago

Thanks for the answer.