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

« back to all changes in this revision

Viewing changes to modules/elementary_functions/help/ru_RU/percenteps.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) 2012 - DIGITEO - Allan CORNET
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="percenteps" xml:lang="ru">
14
 
  <refnamediv>
15
 
    <refname>%eps</refname>
16
 
    <refpurpose>
17
 
      epsilon (машинная эпсилон -- относительная точность представления чисел с плавающей запятой)
18
 
    </refpurpose>
19
 
  </refnamediv>
20
 
  <refsynopsisdiv>
21
 
    <title>Последовательность вызова</title>
22
 
    <synopsis>%eps</synopsis>
23
 
  </refsynopsisdiv>
24
 
  <refsection>
25
 
    <title>Описание</title>
26
 
    <para>
27
 
      <literal>%eps</literal> -- предопределённая переменная, <literal>%eps =
28
 
        2^(-52)
29
 
      </literal>
30
 
      .
31
 
    </para>
32
 
    <para>
33
 
      Вычисления выполняются не абсолютно точно, а с некоторой заданной точностью. 
34
 
      Scilab использует стандарт IEEE 754.
35
 
    </para>
36
 
  </refsection>
37
 
  <refsection>
38
 
    <title>Пример</title>
39
 
    <programlisting role="example">
40
 
      %eps
41
 
      format(20)
42
 
      1 + %eps
43
 
      1 + (%eps / 2) == 1
44
 
    </programlisting>
45
 
  </refsection>
46
 
  <refsection role="see also">
47
 
    <title>Смотрите также</title>
48
 
    <simplelist type="inline">
49
 
      <member>
50
 
        <link linkend="format">format</link>
51
 
      </member>
52
 
    </simplelist>
53
 
  </refsection>
54
 
</refentry>