Assign null to rows of a matrix

79 ビュー (過去 30 日間)
Benedict Teng
Benedict Teng 2019 年 9 月 20 日
コメント済み: Benedict Teng 2019 年 9 月 20 日
Hi guys,
I wanted to assign increment rows of null to a variable "C". The variable C has a size of 138x6x69. My code is shown below.
a = 1;
for i = 1:69
C(1:a,:,i)=[];
a = a+2;
end
But the error was " A null assignment can have only one non-colon index.A null assignment can have only one non-colon index."
Can anyone teach me another way of modifying the code? I really need help.
Much Thanks
Ben

採用された回答

Raj
Raj 2019 年 9 月 20 日
You cannot assign 'null' like this to a 3D matrix while wanting to maintain the dimensions of the matrix. You can assign zero or NaN depending on what you want to achieve here.
  7 件のコメント
Stephen23
Stephen23 2019 年 9 月 20 日
編集済み: Stephen23 2019 年 9 月 20 日
"but it seems like the matrix size change every time after I assign null the rows"
Because what you are doing is removing rows:
MATLAB does not have a "null" concept, even though you keep using this term. You can't "assign null" as you write, because "null" does not exist.
Can you suggest any better way to do this?
Collect all of the required indices into a vector, use it to remove all rows at once after the loop.
Benedict Teng
Benedict Teng 2019 年 9 月 20 日
I've got it, thanks for the advices guys. Really appreciate it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by