From 47535ab08afeb48fbb00f03e68d6ff973cf62cbd Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Fri, 10 Nov 2017 14:59:26 +0530 Subject: Functions added --- help/en_US/scilab_en_US_help/shiftdata.html | 130 ---------------------------- 1 file changed, 130 deletions(-) delete mode 100644 help/en_US/scilab_en_US_help/shiftdata.html (limited to 'help/en_US/scilab_en_US_help/shiftdata.html') diff --git a/help/en_US/scilab_en_US_help/shiftdata.html b/help/en_US/scilab_en_US_help/shiftdata.html deleted file mode 100644 index 22d0ac0..0000000 --- a/help/en_US/scilab_en_US_help/shiftdata.html +++ /dev/null @@ -1,130 +0,0 @@ - - - shiftdata - - - -
- - - - -
- << shanwavf - - -<<<<<<< HEAD - FOSSEE Signal Processing Toolbox -======= - FOSSEE Signal Processing Toolbox ->>>>>>> 3f916032cc0b2efdeafb838dd10e1141ead2cb27 - - - slewrate >> - -
-
-
- - - -<<<<<<< HEAD - FOSSEE Signal Processing Toolbox >> FOSSEE Signal Processing Toolbox > shiftdata -======= - FOSSEE Signal Processing Toolbox >> FOSSEE Signal Processing Toolbox > shiftdata ->>>>>>> 3f916032cc0b2efdeafb838dd10e1141ead2cb27 - -

-

shiftdata

-

Shifts data by rearranging dimensions

- - -

Calling Sequence

-
- -

Parameters

-
- -

Description

-

[y,perm,nshifts]=shiftdata(x,dim) -Shifts the entries along dimension dim in x to the first column and returns the permutation vector in perm -[y,perm,nshifts]=shiftdata(x) -Shifts the entries along dimension dim in x to the first column and returns the number of shifts in nshifts

- -

Examples

-
//When dim is specified:
-x=testmatrix('magi',3)
-x  =
-
-8.    1.    6.
-3.    5.    7.
-4.    9.    2.
-[y,perm,nshifts] = shiftdata(x,2)
-nshifts  =
-
-[]
-perm  =
-
-2.    1.
-y  =
-
-8.    3.    4.
-1.    5.    9.
-6.    7.    2.
-//When dim is not specified:
-x=1:5
-x  =
-
-1.    2.    3.    4.    5.
-[y,perm,nshifts] = shiftdata(x)
-nshifts  =
-
-1.
-perm  =
-
-[]
-y  =
-
-1.
-2.
-3.
-4.
-5.
- -

See also

-
-
- -
- - - - - - -
Report an issue
- << shanwavf - - -<<<<<<< HEAD - FOSSEE Signal Processing Toolbox -======= - FOSSEE Signal Processing Toolbox ->>>>>>> 3f916032cc0b2efdeafb838dd10e1141ead2cb27 - - - slewrate >> - -
-
-
- - -- cgit