how to define a Three-dimensional symbol variable

b(i,j,k);
i = 5,k = 3
for i = 1:5
j = 2^i;
end
in other words,every row has different number of element for a centain k;
how to define these Three-dimensional symbol variable
thank you

1 个评论

I didn't fully understand, you want to do one matrix? or several different matrices?

请先登录,再进行评论。

 采纳的回答

do you mean something like that?
%
c = ones(1,3)
for ii=1:length(c)
CellArray{ii}=ones(ii,2.^ii)
end
or something like that:
%
c = ones(1,3)
k = 3
CellArray = {a b c}
for ii=1:length(c)
CellArray{ii}=ones(ii,2.^ii,k)
end

1 个评论

b(i,j,k) it's size like this
1,1
1,1,1,1
1,1,1,1,1,1,1,1
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
1,1
1,1,1,1
1,1,1,1,1,1,1,1
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
1,1
1,1,1,1
1,1,1,1,1,1,1,1
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
how to define these Three-dimensional symbol variable

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by