How can I generate a matrix of symbolic functions, whose size varies depending on the input values?
1 次查看(过去 30 天)
显示 更早的评论
For example, I want to generate 4 symbolic functions which depend on the variable 't'. They should be something like th1(t), th2(t), th3(t), and th4(t). It's easy to define these variables when the number of variables is less and that number is constant. How can I automatically get a matrix of functions whose size may vary?
0 个评论
采纳的回答
madhan ravi
2018-11-3
编辑:madhan ravi
2018-11-3
It’s highly discouraged.
if you still insist doing it then see
13 个评论
Walter Roberson
2018-11-5
Use a cell array of symbolic functions.
TH = sprintfc('th%d(t)', 1:n);
funs = arrayfun( @(th) sym(th), TH, 'uniform', 0);
Now funs{1} through funs{n}
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!