dynamic name for matrices

2 Ansichten (letzte 30 Tage)
Elia
Elia am 22 Jan. 2014
Kommentiert: Amit am 22 Jan. 2014
i want to create a dynamic name for the matrices , that are generated through a loop .
for j=1:x
for i=1:y
.
.
%a matrix with the name T is generated for every time the loop runs
T(i)=...
end
A(j)=T(:)
end
A(j) didn't work in the parent loop

Antworten (2)

dpb
dpb am 22 Jan. 2014

Amit
Amit am 22 Jan. 2014
A = zeros(x,y);
for j=1:x
for i=1:y
.
.
%a matrix with the name T is generated for every time the loop runs
T(i)=...
end
A(j,:)=T(:)
end
  1 Kommentar
Amit
Amit am 22 Jan. 2014
you dont need to create a dynamic matrix for T. Simple indexing would work.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by