summaryrefslogtreecommitdiff
path: root/help/en_US/mpoles.xml
diff options
context:
space:
mode:
authorSunil Shetye2018-07-25 17:32:17 +0530
committerSunil Shetye2018-07-26 23:50:17 +0530
commitcdd55940b7a287810e423017c42e7c965815c468 (patch)
treed802563d2d507039354a3cf48e75465b7e7a8d76 /help/en_US/mpoles.xml
parent1251f70aa3442736ce6fd9c4fb7fbce412af5a52 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-cdd55940b7a287810e423017c42e7c965815c468.tar.gz
FOSSEE-Signal-Processing-Toolbox-cdd55940b7a287810e423017c42e7c965815c468.tar.bz2
FOSSEE-Signal-Processing-Toolbox-cdd55940b7a287810e423017c42e7c965815c468.zip
code changes by Shashikiran Yadalam during FOSSEE Fellowship 2018
Diffstat (limited to 'help/en_US/mpoles.xml')
-rw-r--r--help/en_US/mpoles.xml78
1 files changed, 78 insertions, 0 deletions
diff --git a/help/en_US/mpoles.xml b/help/en_US/mpoles.xml
new file mode 100644
index 0000000..99ff1d2
--- /dev/null
+++ b/help/en_US/mpoles.xml
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from mpoles.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="mpoles" 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>mpoles</refname>
+ <refpurpose>Identifies unique poles in p and their associated multiplicity.</refpurpose>
+ </refnamediv>
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [multp, idxp] = mpoles (p)
+ [multp, idxp] = mpoles (p, tol)
+ [multp, idxp] = mpoles (p, tol, reorder)
+ </synopsis>
+</refsynopsisdiv>
+
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>p:</term>
+ <listitem><para> Real vector whose poles has to be calculated</para></listitem></varlistentry>
+ <varlistentry><term>tol:</term>
+ <listitem><para> tolerence,by default, tol=0.001</para></listitem></varlistentry>
+ <varlistentry><term>reorder:</term>
+ <listitem><para> the optional parameter, if reorder is zero, poles are not sorted.</para></listitem></varlistentry>
+ <varlistentry><term>multp:</term>
+ <listitem><para> is a vector specifying the multiplicity of the poles.</para></listitem></varlistentry>
+<varlistentry><term>indxp:</term>
+ <listitem><para> indices of the poles</para></listitem></varlistentry>
+
+</variablelist>
+</refsection>
+<refsection>
+ <title>Description</title>
+ <para>
+The output is ordered from largest to the smallest poles. If the relative difference between the poles is less than the tolerance(tol), then those poles are considered as multiples. By default, the tolerance value is 0.001.
+</para>
+
+<para>
+If the optional parameter, reorder is 0, then the poles are not sorted.
+</para>
+</refsection>
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+ p = [2 3 1 1 2];
+ [m, n] = mpoles (p)
+// n =
+// 2.
+// 5.
+// 1.
+// 4.
+// 3.
+// m =
+// 1.
+// 1.
+// 2.
+// 1.
+// 2.
+ ]]></programlisting>
+</refsection>
+
+</refentry>