Anonymous Functions in another anonymous function
19 ビュー (過去 30 日間)
古いコメントを表示
I'm working with function handle and i want to generate a function by combining others functions like below:
f1 = @(x) x(1)/(1+x(2));
f2 = @(x) x(2)/(1+x(1));
f3 = @(x) f1 + f2
Of course it doesn't work, can somebody show me the way how to do it?
Many thanks!
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Function Handles についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!