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/interp.html | 85 -------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 help/en_US/scilab_en_US_help/interp.html (limited to 'help/en_US/scilab_en_US_help/interp.html') diff --git a/help/en_US/scilab_en_US_help/interp.html b/help/en_US/scilab_en_US_help/interp.html deleted file mode 100644 index 886b6eb..0000000 --- a/help/en_US/scilab_en_US_help/interp.html +++ /dev/null @@ -1,85 +0,0 @@ -
- -function y = interp(x, q, n, Wc)
y = interp(x, q) -y = interp(x, q, n) -y = interp(x, q, n, Wc)
scalar or vector of complex or real numbers
positive integer value, or logical
positive integer, default value 4
non decreasing vector or scalar, starting from 0 uptill 1, default value 0.5
This is an Octave function. -This function upsamples the signal x by a factor of q, using an order 2*q*n+1 FIR filter. -The second argument q must be an integer. The default values of the third and fourth arguments (n, Wc) are 4 and 0.5 respectively.