get error when remove an item
古いコメントを表示
hi, i want to remove an item from array, but get error
this is my code
align(1,:)='asd-as---tyr';
align(2,:)='fg--ds--h-ty';
for i=1:12
if align(1,i)=='-' & align(2,i)=='-'
align(1,i)=[]; align(2,i)=[];
end
end
??? A null assignment can have only one non-colon index.
Error in ==> testt at 6
align(1,i)=[];
thanks in advance
採用された回答
その他の回答 (2 件)
Aurelien Queffurust
2012 年 3 月 2 日
To remove the minus sign you could use:
align= char(strrep(align(1,:),'-','') ,strrep(align(2,:),'-','') )
the cyclist
2012 年 3 月 2 日
I can see how you would find that error message a bit cryptic, but here is what is going on.
Your variable align is a 2x12 character array. With your line of code
align(1,i)=[];
is going to attempt to remove the upper-left corner of that array. But MATLAB can't do that. There cannot be a character array that has one row of 11 elements, and a second row that is 12 elements. One element cannot be "empty" in that way. (That is what error message is saying.) You can only do the null assignment for a whole row or column at once.
So, in your case, you could combine your two null assignment statements into the single statement
align(:,i) = [];
and MATLAB will delete the i'th column, in its entirety.
Be aware that your array align is going to keep getting trimmed, as it goes through the for loop, so it will no longer be width 12.
3 件のコメント
huda nawaf
2012 年 3 月 28 日
Jan
2012 年 3 月 28 日
Please post a new question in a new thread.
huda nawaf
2012 年 3 月 28 日
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!