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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ru_RU/sqrtm.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="sqrtm" xml:lang="ru">
14
 
  <refnamediv>
15
 
    <refname>sqrtm</refname>
16
 
    <refpurpose>матричный квадратный корень</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Последовательность вызова</title>
20
 
    <synopsis>y=sqrtm(x)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Аргументы</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>x</term>
27
 
        <listitem>
28
 
          <para>вещественная или комплексная квадратная матрица</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
    </variablelist>
32
 
  </refsection>
33
 
  <refsection>
34
 
    <title>Описание</title>
35
 
    <para>
36
 
      <literal>y=sqrt(x)</literal> является матричным квадратным корнем из матрицы 
37
 
      <literal>x</literal> (<literal>x=y^2</literal>). Результат может быть неточным,
38
 
      если матрица <literal>x</literal> не симметричная.
39
 
    </para>
40
 
  </refsection>
41
 
  <refsection>
42
 
    <title>Примеры</title>
43
 
    <programlisting role="example"><![CDATA[ 
44
 
x=[0 1;2 4]
45
 
w=sqrtm(x); 
46
 
norm(w*w-x)
47
 
x(1,2)=%i;
48
 
w=sqrtm(x);norm(w*w-x,1)
49
 
 ]]></programlisting>
50
 
  </refsection>
51
 
  <refsection role="see also">
52
 
    <title>Смотрите также</title>
53
 
    <simplelist type="inline">
54
 
      <member>
55
 
        <link linkend="expm">expm</link>
56
 
      </member>
57
 
      <member>
58
 
        <link linkend="sqroot">sqroot</link>
59
 
      </member>
60
 
    </simplelist>
61
 
  </refsection>
62
 
</refentry>