I'm trying to create Matrices Index or subscript ?

1 Ansicht (letzte 30 Tage)
Abdulaziz
Abdulaziz am 12 Sep. 2012
Hello guys
I wish you help me with my issue. I am trying to put a subscript or index to a group of matrices. I tried the following short code which did not work. The code is showed below.
>> x=[1 2 3;4 5 6;7 8 9]
x =
1 2 3
4 5 6
7 8 9
>> u=1;
>> for i=1:3
y_u=i*x;
u=u+1;
end
>> y_1
??? Undefined function or variable 'y_1'.
Thank you in advance

Akzeptierte Antwort

Matt Fig
Matt Fig am 12 Sep. 2012
Bearbeitet: Matt Fig am 12 Sep. 2012
Do not program that way in MATLAB!
You want this:
x = [1 2 3;4 5 6;7 8 9];
for ii = 1:3
y{ii} = ii*x; % Notice {} and not ()
end
Now you have a cell array that has as each element a matrix:
y{1}
y{2}
y{3}
If you want to make ii go much further than 3, you should pre-allocate the memory for y first...
  2 Kommentare
Andrei Bobrov
Andrei Bobrov am 12 Sep. 2012
x = [1 2 3;4 5 6;7 8 9];
y = bsxfun(@times,x,reshape(1:3,1,1,[]));
yout = num2cell(y,[1 2]);
Abdulaziz
Abdulaziz am 14 Sep. 2012
Thank you Matt FIG this was really helpful
I appreciate your time

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by