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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ru_RU/elementarymatrices/toeplitz.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:ns5="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="toeplitz" xml:lang="ru">
 
14
    <refnamediv>
 
15
        <refname>toeplitz</refname>
 
16
        <refpurpose>Тёплицева матрица</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Последовательность вызова</title>
 
20
        <synopsis>A=toeplitz(c [,r])</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Аргументы</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>a,c,r</term>
 
27
                <listitem>
 
28
                    <para>
 
29
                        матрицы констант (constant), многочленов (polynomial) или строк (string)
 
30
                    </para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
        </variablelist>
 
34
    </refsection>
 
35
    <refsection>
 
36
        <title>Описание</title>
 
37
        <para>
 
38
            <literal>A=toeplitz(c [,r])</literal> возвращает Тёплицеву матрицу, чья первая строка <literal>r</literal>, а первый столбец <literal>c</literal>. <literal>c(1)</literal> 
 
39
            должет быть равным <literal>r(1)</literal>. <literal>toeplitz(c)</literal> возвращает симметричную Тёплицеву матрицу.
 
40
        </para>
 
41
    </refsection>
 
42
    <refsection>
 
43
        <title>Примеры</title>
 
44
        <programlisting role="example"><![CDATA[ 
 
45
A=toeplitz(1:5);
 
46
 
 
47
T=toeplitz(1:5,1:2:7);T1=[1 3 5 7;2 1 3 5;3 2 1 3;4 3 2 1;5 4 3 2];
 
48
T-T1
 
49
 
 
50
s=poly(0,'s');
 
51
t=toeplitz([s,s+1,s^2,1-s]);
 
52
t1=[s,1+s,s*s,1-s;1+s,s,1+s,s*s;s*s,1+s,s,1+s;1-s,s*s,1+s,s]
 
53
t-t1
 
54
 
 
55
t=toeplitz(['1','2','3','4']);
 
56
t1=['1','2','3','4';'2','1','2','3';'3','2','1','2';'4','3','2','1']
 
57
 ]]></programlisting>
 
58
    </refsection>
 
59
    <refsection role="see also">
 
60
        <title>Смотрите также</title>
 
61
        <simplelist type="inline">
 
62
            <member>
 
63
                <link linkend="matrix">matrix</link>
 
64
            </member>
 
65
            <member>
 
66
                <link linkend="testmatrix">testmatrix</link>
 
67
            </member>
 
68
        </simplelist>
 
69
    </refsection>
 
70
</refentry>