Info

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

I'm trying to set certain rows in a 3 dimensional matrix 0

1 回表示 (過去 30 日間)
Anush Lingamoorthy
Anush Lingamoorthy 2017 年 9 月 19 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have created a 3-Dimensional matrix (remove_bad_data) of size
11*600*14 (rows*coloumns*sheets)
I wish to remove certain rows on each sheet. Eg.
remove_bad_data(10,:,2)=[];
remove_bad_data(3,:,3)=[];
But I get the following error:
A null assignment can have only one non-colon index.
How do I fix this issue?
  1 件のコメント
José-Luis
José-Luis 2017 年 9 月 19 日
You can't set them to empty, that'd mess up the dimensions of your array.

回答 (1 件)

José-Luis
José-Luis 2017 年 9 月 19 日
編集済み: José-Luis 2017 年 9 月 19 日
Since it is impossible setting them to empty without actually changing your array, you could use NaN instead.
data(10,:,2) = NaN;
For example. Or actually use 0 like the header of your question suggests instead of trying to set them to empty.

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

Community Treasure Hunt

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

Start Hunting!

Translated by