I created some filters with fdatool in Matlab. Now I want to use this filters in a windows aplication using c++.
I search some libraries to filter in c++, but these libraries has functions which implement filters like chebyshev,etc. But i want use my filters.
How can i do? i know export coefficients in some formats, but how can use this in c++.
Thansk
There are two ways that enable you to call Matlab functions (filters in you case) inside C++:
Distribute MATLAB into independent shared library: check out this blog on how to do this (with detail steps and example).
Call MATLAB Engine directly: Refer to another blog for more info.