Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How to do the iterative work?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
for example, matrix(1,1,1)=0;
next matrix(1,2,1)=1 ... matrix(1,100,1)=215;
Next matrix(2,1,1)= 124;
until matrix(10,10,1)=512;
Basically, I want to store many value into matrix
can I use matrix(i,i,1)?
1 Kommentar
Adam
am 2 Sep. 2014
Beware with your indices though.
matrix( 77, 99, 1000 ) = 7;
will quietly go away and create a matrix of > 7.6 million values (zeros) just to put the number 7 in its final location.
On numerous occasions I have accidentally got a matrix index calculation wrong and had to power my machine off after it froze out of memory!
Antworten (1)
Iain
am 2 Sep. 2014
Pretty much yeah,
matrix(i,i,1) = 5
That will set the element on the ith row and ith column on the 1st slice/page/"whatever you want to call it" to be 5
matrix(i,j,k) = 5
That will set the element on the ith row and jth column on the kth slice/page/"whatever you want to call it" to be 5
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!