I want to chose a function and use it in the code, but have the possibility to chose different functions, is it possible?
2 ビュー (過去 30 日間)
古いコメントを表示
I am trying to have the possibility to chose different files (which are functions) and use them with a signal. But I need to have the possibility to change the function without changing the code. I tried this, but I don't know if it works. And I don't know why it doesn't work, because if I call the function directly, it is ok!
1 件のコメント
Stephen23
2021 年 11 月 4 日
"But I need to have the possibility to change the function without changing the code"
Then you should be using function handles, rather than messing about with text representation of function names.
採用された回答
その他の回答 (1 件)
Voss
2021 年 11 月 1 日
Try replacing your line with eval with the following:
input_dpd = feval(baseStr,input_signal.x);
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!