Error using detrend. Too many output arguments

2 次查看(过去 30 天)
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

采纳的回答

Star Strider
Star Strider 2020-7-15
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 个评论
Steven Lord
Steven Lord 2020-7-15
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 2020-7-15
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Preprocess Data 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by