~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/linear_algebra/help/en_US/eigen/projspec.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
4
 * Copyright (C) 2008 - INRIA
 
5
 * 
 
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
 
11
 *
 
12
 -->
 
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" version="5.0-subset Scilab" xml:lang="en" xml:id="projspec">
 
14
    <refnamediv>
 
15
        <refname>projspec</refname>
 
16
        <refpurpose> spectral operators</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>[S,P,D,i]=projspec(A)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Arguments</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>A</term>
 
27
                <listitem>
 
28
                    <para>square matrix</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>S, P, D</term>
 
33
                <listitem>
 
34
                    <para>square matrices</para>
 
35
                </listitem>
 
36
            </varlistentry>
 
37
            <varlistentry>
 
38
                <term>i</term>
 
39
                <listitem>
 
40
                    <para>
 
41
                        integer (index of the zero eigenvalue of <literal>A</literal>).
 
42
                    </para>
 
43
                </listitem>
 
44
            </varlistentry>
 
45
        </variablelist>
 
46
    </refsection>
 
47
    <refsection>
 
48
        <title>Description</title>
 
49
        <para>
 
50
            Spectral characteristics of <literal>A</literal> at 0.
 
51
        </para>
 
52
        <para>
 
53
            <literal>S</literal> = reduced resolvent at 0 (<literal>S</literal> = -Drazin_inverse(<literal>A</literal>)).
 
54
        </para>
 
55
        <para>
 
56
            <literal>P</literal> = spectral projection at 0.
 
57
        </para>
 
58
        <para>
 
59
            <literal>D</literal> = nilpotent operator at 0.
 
60
        </para>
 
61
        <para>
 
62
            <literal>index</literal> = index of the 0 eigenvalue.
 
63
        </para>
 
64
        <para>
 
65
            One has <literal>(s*eye()-A)^(-1) = D^(i-1)/s^i +... + D/s^2 + P/s - S - s*S^2 -...</literal>
 
66
            around the singularity s=0.
 
67
        </para>
 
68
    </refsection>
 
69
    <refsection>
 
70
        <title>Examples</title>
 
71
        <programlisting role="example"><![CDATA[ 
 
72
deff('j=jdrn(n)','j=zeros(n,n);for k=1:n-1;j(k,k+1)=1;end')
 
73
A=sysdiag(jdrn(3),jdrn(2),rand(2,2));X=rand(7,7);
 
74
A=X*A*inv(X);
 
75
[S,P,D,index]=projspec(A);
 
76
index   //size of J-block
 
77
trace(P)  //sum of dimensions of J-blocks
 
78
A*S-(eye()-P)
 
79
norm(D^index,1)
 
80
 ]]></programlisting>
 
81
    </refsection>
 
82
    <refsection role="see also">
 
83
        <title>See Also</title>
 
84
        <simplelist type="inline">
 
85
            <member>
 
86
                <link linkend="coff">coff</link>
 
87
            </member>
 
88
        </simplelist>
 
89
    </refsection>
 
90
</refentry>