Index a Matrix that gets smaller

1 回表示 (過去 30 日間)
Bryson Prince
Bryson Prince 2021 年 4 月 11 日
コメント済み: Bryson Prince 2021 年 4 月 11 日
I have a cell array that I am deleting any rows with empty values, and while indexing I run into the error:
"Index in position 1 exceeds array bounds (must not exceed 347)."
Here is the script for the part that has the issue, how can I index a cell array while deleting stuff as it goes?
for ind=2:size(RAW)
if sum(strcmp('',RAW(ind,4:7)))~=0
RAW(ind,:)=[]
end
end
note: I am skipping the first row intentionally, and also only checking columns 4 through 7

採用された回答

madhan ravi
madhan ravi 2021 年 4 月 11 日
for ind = size(RAW): -1 : 2
  1 件のコメント
Bryson Prince
Bryson Prince 2021 年 4 月 11 日
Replacing the for statement with that worked perfectly, thanks.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by