How can I use single float with filtfilt in matlab coder?
3 ビュー (過去 30 日間)
古いコメントを表示
I use matlab coder (matlab version:R2017a) to compile matlab code to C code .And I want to use single floating-point number.While I have used filtfilt function in matlab code. Then I got an error it said filtfilt only takes double floating-point number.I have tried using single() to convert parameters in filtfilt but still failed.Is there anyone can help me?Thanks.
0 件のコメント
回答 (1 件)
Jan
2017 年 6 月 19 日
編集済み: Jan
2017 年 6 月 19 日
Either convert the signal using double(), or use FEX: FilterM, which accepts single values, but accumulate the internal filter state as doubles to increase the accuracy or the output.
4 件のコメント
Jan
2017 年 7 月 4 日
While filter works on single also, filtfilt accepts doubles only (at least in some Matlab versions). You can either include the C-Mex FilterX and FiltFiltM.m (see https://www.mathworks.com/matlabcentral/answers/48620-generating-c-c-code-from-m-function-include-mex-file), or modify the builtin filtfilt.m function to accept singles also. I still do not see, where the problem is.
参考
カテゴリ
Help Center および File Exchange で Statistics and Linear Algebra についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!