How can i use a cell array in the symbolic variables?

조회 수: 2 (최근 30일)
masoud jiryaei
masoud jiryaei 2019년 8월 22일
답변: masoud jiryaei 2019년 8월 22일
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
masoud jiryaei
masoud jiryaei 2019년 8월 22일
I actually want to put symbolic variables in a cell array.
masoud jiryaei
masoud jiryaei 2019년 8월 22일
편집: masoud jiryaei 2019년 8월 22일
for example : I have this 2-by-2 matrix : [A] = [ a*(x^2) , b(y^3) ; d*(x^2)*y , c ].
and I want to put it in a cell array 3-by-1 : {b} = { [A] ; [A] ; [A] }

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2019년 8월 22일
편집: madhan ravi 2019년 8월 22일
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}
>>

추가 답변 (1개)

masoud jiryaei
masoud jiryaei 2019년 8월 22일
Thanks

카테고리

Help CenterFile Exchange에서 Symbolic Variables, Expressions, Functions, and Preferences에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by