Effacer les filtres
Effacer les filtres

How can I generate a matrix of symbolic functions, whose size varies depending on the input values?

2 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

madhan ravi
madhan ravi le 3 Nov 2018
Modifié(e) : madhan ravi le 3 Nov 2018
  13 commentaires
Walter Roberson
Walter Roberson le 5 Nov 2018
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}

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by