Borrar filtros
Borrar filtros

Error using detrend. Too many output arguments

2 visualizaciones (últimos 30 días)
Christoph Thorwartl
Christoph Thorwartl el 15 de Jul. de 2020
Comentada: Star Strider el 15 de Jul. de 2020
I would like to run this function.
[dataL_d,Tr] = detrend(dataL,1);
However, the following error always occurs:
Error using detrend. Too many output arguments.
I need the Tr information. If I do not want to output Tr, it works. See command below.
[dataL_d] = detrend(dataL,1);
I would be very happy about an answer.
Best regards,
Christoph

Respuesta aceptada

Star Strider
Star Strider el 15 de Jul. de 2020
You are asking detrend to remove a linear trend.
To get the slope and intercept of your data, use the polyfit function. There is no specified independent variable value, so use the index vector for that:
P = polyfit((1:numel(dataL)), dataL, 1)
The slope is ‘P(1)’ and the intercept is ‘P(2)’.
  3 comentarios
Steven Lord
Steven Lord el 15 de Jul. de 2020
That version of detrend is part of System Identification Toolbox and is a method of iddata objects. It is only called if the first input in your call is an iddata object. If the first input is a double precision array MATLAB calls the detrend function included in MATLAB.
Star Strider
Star Strider el 15 de Jul. de 2020
My pleasure!
I have not looked at the code for the MATLAB detrend function, however I suspect it uses polyfit (and polyval) to calculate and subtract the trend.
The System Identification Toolbox detrend function (the one you linked to) is a different detrend function altogether. To use it, you must have the System Identification Toolbox, and the argument must be created by the iddata function. They are quite definitely not the same.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by