mathnet-filtering
mathnet-filtering copied to clipboard
Math.NET Filtering (formerly Neodym)
I use `MathNet.Filtering.Butterworth.IirCoefficients.LowPass(double passbandFreq, double stopbandFreq, double passbandRipple, double stopbandAttenuation)` generated a coefficients, but I dont konw how to use the coefficients to get a instance of iir filter
Do you plan to implement it at some point? It's one of the most well-known and widely used filters, of course.
The idea is to handle angle states and measurements that wrap in the range of +/-Pi. It is inspired by this paper: https://arxiv.org/pdf/1708.05551.pdf Class constructor is overloaded for retro compatibility....
Hello, I recognized, that the Highpass Oninefilter does remove DC. Please see details in the attached pdf. [Highpass problems.pdf](https://github.com/mathnet/mathnet-filtering/files/7764713/Highpass.problems.pdf)
Added static class that generates OnlineIirFilter objects from Butterworth filter. Butterworth filters were only generating coefficients, while now it is possible to directly obtain an OnlineIirFilter object designed using the...
Updated AppVeyor Visual Studio image to 2019. This fixes build errors.
I would love a pink noise generator in addition to the white noise generator. (anyway, thanks for the great package!)
Explicitly indicating the optional argument "halforder" when calling FirCoefficients.LowPass() from OnlineFilter.CreateLowPass(). This fixes a regression introduced in version 0.6 and highlighted by SOCMarcel in [Issue #15](https://github.com/mathnet/mathnet-filtering/issues/15).
Hi, I believe the Kalman package is LGPL, and your website makes this clear, but NuGet displays `License: MIT`. https://www.nuget.org/packages/MathNet.Filtering.Kalman/
Hello, Using the following example (with release 0.7.0 from NuGet), the low pass filter has a **unexpected response**. ` double fs = 1000; //sampling rate double fw = 5; //signal...