From 9539b5efb5ccf665a1cc4b8e814e96460b22e0ab Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Tue, 28 Nov 2017 14:53:58 +0530 Subject: New functions and help files generated --- help/en_US/detrend1.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 help/en_US/detrend1.xml (limited to 'help/en_US/detrend1.xml') diff --git a/help/en_US/detrend1.xml b/help/en_US/detrend1.xml new file mode 100644 index 0000000..783d922 --- /dev/null +++ b/help/en_US/detrend1.xml @@ -0,0 +1,51 @@ + + + + + + + + detrend1 + This function removes the best fit of a polynomial of order P from the data X + + + + + Calling Sequence + + detrend1(X,P) + + + + + Parameters + + X: + Input vecor or matrix. + P: + The order of polnomial + + + + + Description + +If X is a vector, 'detrend1(X, P)' removes the best fit of apolynomial of order P from the data X.If X is a matrix, 'detrend1(X, P)' does the same for each column in X. + + +The second argument P is optional. If it is not specified, a value of 1 is assumed. This corresponds to removing a linear trend. +The order of the polynomial can also be given as a string, in which case P must be either "constant" (corresponds to 'P=0') or "linear"(corresponds to 'P=1') + + + -- cgit