1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) INRIA -
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="en" xml:id="krac2">
15 <refname>krac2</refname>
16 <refpurpose>continuous SISO system limit feedback gain</refpurpose>
19 <title>Calling Sequence</title>
20 <synopsis>g=krac2(sys)</synopsis>
23 <title>Arguments</title>
28 <para>SISO linear system (syslin)</para>
40 <title>Description</title>
42 <literal>krac2(sys)</literal> computes the gains <literal>g</literal> such that the system
43 <literal>sys</literal> feedback by g (<literal>sys/.g</literal>) has 2 real equal poles.
47 <title>Examples</title>
48 <programlisting role="example"><![CDATA[
49 h=syslin('c',352*poly(-5,'s')/poly([0,0,2000,200,25,1],'s','c'));
52 hf1=h/.g(1);roots(denom(hf1))
53 hf2=h/.g(2);roots(denom(hf2))
56 <refsection role="see also">
57 <title>See Also</title>
58 <simplelist type="inline">
60 <link linkend="evans">evans</link>
63 <link linkend="kpure">kpure</link>