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 commentaire

ilona
ilona le 15 Déc 2013
Modifié(e) : ilona le 15 Déc 2013
I didn't fully understand, you want to do one matrix? or several different matrices?

Connectez-vous pour commenter.

 Réponse acceptée

ilona
ilona le 15 Déc 2013
Modifié(e) : ilona le 15 Déc 2013
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 commentaire

hua
hua le 15 Déc 2013
Modifié(e) : hua le 15 Déc 2013
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Centre d'aide et File Exchange

Question posée :

hua
le 15 Déc 2013

Modifié(e) :

le 15 Déc 2013

Community Treasure Hunt

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

Start Hunting!

Translated by