Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to do the iterative work?

1 回表示 (過去 30 日間)
tabw
tabw 2014 年 9 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
Adam
Adam 2014 年 9 月 2 日
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!

回答 (1 件)

Iain
Iain 2014 年 9 月 2 日
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

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by