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

6 Ansichten (letzte 30 Tage)
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 Kommentare
NN
NN am 12 Dez. 2020
Bearbeitet: NN am 12 Dez. 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 am 15 Dez. 2020
if XTrain is an array, then
XTrain{i}
is both meaningless and causing the error. Use
XTrain(idxConstant,:) = [];

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by