Error in using rmoutliers()

1 visualización (últimos 30 días)
BN
BN el 1 de Abr. de 2020
Respondida: Steven Lord el 1 de Abr. de 2020
Dear All,
I was read rmoutliers documentation carefully and want to use it in order to remove outliers' values in a matrix (namely FORCHECK). Actually I choose rmoutliers because rmoutliers detect outliers in each column or variable of A separately and removes the entire row.
Here is my code:
FFF = rmoutliers(FORCHECK,'percentiles',[0 90]);
I wanted to define outlier points as the point that is above the 90th percentile. But I got this error:
Error using matlab.internal.math.rmMissingOutliersVarargin>issueError
(line 137)
Dimension must be 1 or 2.
Error in matlab.internal.math.rmMissingOutliersVarargin>getDim (line
129)
issueError(funName,'DimensionInvalid');
Error in matlab.internal.math.rmMissingOutliersVarargin (line 47)
[opts,startNV] =
getDim(funName,opts,startNV,dimIn,numargs,doOutliers);
Error in matlab.internal.math.rmMissingOutliers>parseInputs (line 100)
opts =
matlab.internal.math.rmMissingOutliersVarargin(funName,A,opts,...
Error in matlab.internal.math.rmMissingOutliers (line 13)
opts = parseInputs(funName,A,varargin{:});
Error in rmoutliers (line 58)
[B,I] =
matlab.internal.math.rmMissingOutliers('rmoutliers',A,varargin{:});
How can I do?

Respuesta aceptada

Steven Lord
Steven Lord el 1 de Abr. de 2020
The 'percentiles' option for rmoutliers, isoutlier, and filloutliers was introduced in release R2019a. You indicated you're using release R2018b, one release before that.

Más respuestas (1)

the cyclist
the cyclist el 1 de Abr. de 2020
Running this
load FORCHECK.mat
FFF = rmoutliers(FORCHECK,'percentiles',[0 90]);
worked just fine for me.
Maybe just restart MATLAB, in case you somehow have some other FORCHECK defined in your workspace?
  1 comentario
BN
BN el 1 de Abr. de 2020
Dear the cyclist,
As you said I restarted Matlab and even use clear all, but still I get this error:
I don't know what to do !

Iniciar sesión para comentar.

Categorías

Más información sobre Timetables en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by