Index of element to remove exceeds matrix dimensions??!

1 次查看(过去 30 天)
Hello Everybody; i am having a problem with that code, regarding that i want to discards the columns with value less than 3...but it always gives me Index of element to remove exceeds matrix dimensions
can you please help me through that?!
[orderedCount, SortOrder]=sort(Count,'descend');
Items=Items(SortOrder);
%%%the propabilty of presence of each
for i=1:length(orderedCount)
if(orderedCount(i)<3)
items(i)=[];
end
end

采纳的回答

Matt J
Matt J 2016-5-28
编辑:Matt J 2016-5-28
Looping will not work because the length and indexing of "Items" changes each time you remove an element. You must remove all of the elements simultaneously,
Items(orderedCount<3)=[];
  5 个评论
Matt J
Matt J 2016-5-28
编辑:Matt J 2016-5-28
As I mentioned, and as my example showed you, this should be done without a loop. The single line
Items(orderedCount<3)=[];
will do the whole job.
Mariam Sheha
Mariam Sheha 2016-5-28
It is brilliant , i thought i have to enter it in the loop,
it works and i am very thankful for your precious help :)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by