delete rows based on whether the value in column 10 of the respective row is equal to one or not
1 view (last 30 days)
Show older comments
Hi,
I tried to solve the problem described above with the following formula:
dataset=[dataset,delete];
rowsToDelete8 = dataset(:,10)==1;
dataX(rowsToDelete8, :) = [];
While doing this, I get the following error message:
Index of element to remove exceeds matrix dimensions.
Error in deleteSeriesWithOnlyFourElements (line 67)
dataX(rowsToDelete8, :) = [];
I do not really understand why it's not working
0 Comments
Accepted Answer
Image Analyst
on 24 Apr 2013
rowsToDelete8 was based on looking at dataset, not dataX, but then you try to use it in dataX, which is evidently not the same size as dataset.
Also, don't use "delete" as the name of a variable like you did in "dataset=[dataset,delete];"
More Answers (0)
See Also
Categories
Find more on Descriptive Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!