From 6011540ce239922c0723ff2f1534e915b420cd1f Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 17 Jul 2018 18:02:33 +0530 Subject: remove autogenerated files remove execute permission from scilab files update macros/names fix build process by building macros before help --- help/en_US/scilab_en_US_help/sgolayfilt.html | 96 ---------------------------- 1 file changed, 96 deletions(-) delete mode 100644 help/en_US/scilab_en_US_help/sgolayfilt.html (limited to 'help/en_US/scilab_en_US_help/sgolayfilt.html') diff --git a/help/en_US/scilab_en_US_help/sgolayfilt.html b/help/en_US/scilab_en_US_help/sgolayfilt.html deleted file mode 100644 index d0ed3ca..0000000 --- a/help/en_US/scilab_en_US_help/sgolayfilt.html +++ /dev/null @@ -1,96 +0,0 @@ - - - sgolayfilt - - - -
- - - - -
- << sgolay - - - FOSSEE Signal Processing Toolbox - - - shanwavf >> - -
-
-
- - - - FOSSEE Signal Processing Toolbox >> FOSSEE Signal Processing Toolbox > sgolayfilt - -

-

sgolayfilt

-

- - -

Calling Sequence

-
y = sgolayfilt (x)
-y = sgolayfilt (x, p)
-y = sgolayfilt (x, p, n)
-y = sgolayfilt (x, p, n, m)
-y = sgolayfilt (x, p, n, m, ts)
- -

Parameters

-
x: -

vector or matrix of real or complex numbers

-
p: -

polynomial order, real number less than n, default value 3

-
n: -

integer, odd number greater than p

-
m: -

vector of real positive valued numbers, length n

-
ts: -

real number, default value 1

- -

Description

-

This function applies a Savitzky-Golay FIR smoothing filter to the data given in the vector x; if x is a matrix, this function operates -on each column. -The polynomial order p should be real, less than the size of the frame given by n. -m is a weighting vector with default value identity matrix. -ts is the dimenstion along which the filter operates. If not specified, the function operates along the first non singleton dimension.

- -

Examples

-
sgolayfilt([1;2;i;4;7], 0.3, 3, 0, 0)
-ans =
-1.0000 + 0.3333i
-1.0000 + 0.3333i
-2.0000 + 0.3333i
-3.6667 + 0.3333i
-3.6667 + 0.3333i
-This function being called from Octave
-
- -
- - - - - - -
Report an issue
- << sgolay - - - FOSSEE Signal Processing Toolbox - - - shanwavf >> - -
-
-
- - -- cgit