C++ code generation of function handles
3 ビュー (過去 30 日間)
古いコメントを表示
I would like to convert my matlab code to C++ code
F = @(x,u) cp_dyn_mex(x,u);
Fp = @(x,u) pour(F,x,u);
DYN = @(x,u,t) diff_xu(Fp, x, u, herr, order);
I get the following:
Caused by: Error determining type for input 'pour:fun'. Class function_handle is not supported by coder.Type.
0 件のコメント
採用された回答
Walter Roberson
2013 年 11 月 29 日
Anonymous functions are not supported, but handles to actual functions are.
1 件のコメント
Paul Wintz
2021 年 8 月 16 日
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!