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 Commento

ilona
ilona il 15 Dic 2013
Modificato: ilona il 15 Dic 2013
I didn't fully understand, you want to do one matrix? or several different matrices?

Accedi per commentare.

 Risposta accettata

ilona
ilona il 15 Dic 2013
Modificato: ilona il 15 Dic 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 Commento

hua
hua il 15 Dic 2013
Modificato: hua il 15 Dic 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

Accedi per commentare.

Più risposte (0)

Categorie

Richiesto:

hua
il 15 Dic 2013

Modificato:

il 15 Dic 2013

Community Treasure Hunt

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

Start Hunting!

Translated by