How can i use a cell array in the symbolic variables?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
masoud jiryaei
il 22 Ago 2019
Risposto: masoud jiryaei
il 22 Ago 2019
How can i use a cell array in the symbolic variables?
I have some variables in a matrix (for example [B]).
I want to put the [B] in a cell array.
Is it possible?
3 Commenti
Risposta accettata
madhan ravi
il 22 Ago 2019
Modificato: madhan ravi
il 22 Ago 2019
Wanted = num2cell(symvar(B))
edit: After your comment.
>> syms a b c d x y z
>> A = [ a*(x^2) , b*(y^3) ; d*(x^2)*y , c ]
A =
[ a*x^2, b*y^3]
[ d*x^2*y, c]
>> B = repelem({A},3,1)
B =
3×1 cell array
{2×2 sym}
{2×2 sym}
{2×2 sym}
>>
2 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Symbolic Variables, Expressions, Functions, and Preferences in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!