diff options
author | shamikam | 2017-11-07 15:59:48 +0530 |
---|---|---|
committer | shamikam | 2017-11-07 15:59:48 +0530 |
commit | c0c0582462720ed597b00e116506570577614e89 (patch) | |
tree | 31dedd23698e5357b19c810b7d7a8464100ef44a /help/en_US/shiftdata.xml | |
download | FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.gz FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.bz2 FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.zip |
initial commit
Diffstat (limited to 'help/en_US/shiftdata.xml')
-rw-r--r-- | help/en_US/shiftdata.xml | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/help/en_US/shiftdata.xml b/help/en_US/shiftdata.xml new file mode 100644 index 0000000..84bdb79 --- /dev/null +++ b/help/en_US/shiftdata.xml @@ -0,0 +1,99 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from shiftdata.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="shiftdata" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>shiftdata</refname> + <refpurpose>Shifts data by rearranging dimensions</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +[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 +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +//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. + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="permute">permute</link></member> + <member><link linkend="unshiftdata">unshiftdata</link></member> + <member><link linkend="Author">Author</link></member> + <member><link linkend="Ankur">Mallick</link></member> + </simplelist> +</refsection> +</refentry> |