To find the rows of data that have the same minimum and maximum values, and remove the rows.

6 views (last 30 days)
I need to remove the rows that have same minimum and maximum values , below is the code used .
but it gives error:
Unable to perform assignment because brace indexing is not supported for variables of this type.
Kindly help
m = min([XTrain{:}],[],2);
M = max([XTrain{:}],[],2);
idxConstant = M == m;
for i = 1:numel(XTrain)
XTrain{i}(idxConstant,:) = [];
end
  10 Comments
NN
NN on 12 Dec 2020
Edited: NN on 12 Dec 2020
Still brace indexing error is getting for the for loop
Unable to perform assignment because brace indexing is not supported for variables of this type.
m = min(XTrain,[],2);
M=max(XTrain,[],2);
idxConstant = M == m;
for i = 1:numel(XTrain)
XTrain{i}(idxConstant,:) = [];
end
Sindar
Sindar on 15 Dec 2020
if XTrain is an array, then
XTrain{i}
is both meaningless and causing the error. Use
XTrain(idxConstant,:) = [];

Sign in to comment.

Answers (0)

Categories

Find more on Matrices and Arrays 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!