How to do a function of equations?
2 ビュー (過去 30 日間)
古いコメントを表示
I want to make a function using 4 equations, something like fun = @ (w, x, y, z) [eq1, eq2, eq3; eq4], however it does not work. The only way that the function has worked is directly copying the value of each of the four equations in the function, However this does not help me because the function is inside a iterative cycle where the value of the equations change between each iteration. Is any way of solve my problem?
Thanks in advance!
2 件のコメント
Physiker192
2014 年 9 月 16 日
could you please give more details like a little example so we can help you?
採用された回答
Mischa Kim
2014 年 9 月 16 日
編集済み: Mischa Kim
2014 年 9 月 16 日
Jurgen, do you mean something like:
eq1 = @(x) x(1)*x(2);
eq2 = @(y) y(1) - 2;
fun = @(z) [eq1(z); eq2(z)];
fun([3,2])
ans =
6
1
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!