File: variables.page

package info (click to toggle)
gcalctool 5.30.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,224 kB
  • ctags: 1,149
  • sloc: ansic: 7,079; sh: 1,159; yacc: 194; makefile: 155; lex: 109; xml: 43
file content (55 lines) | stat: -rw-r--r-- 1,326 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" type="guide" id="variable">

    <info>
        <link type="guide" xref="index#equation"/>
    </info>

	<title>Variables</title>
    
    <p>
    To assign a value to a variable use the = symbol or choose the variable to assign to with the <gui>→R</gui> button in <link xref="mouse">advanced mode</link>.
    A variable name must only contain upper or lower characters.
    </p>
    <example>
    <p>
    x=5
    </p>
    <p>
    value=82
    </p>
    </example>
    <p>
    Variables can be used in any equation and are substituted for their assigned value.
    Variables can be inserted using the <gui>←R</gui> button.
    </p>
    <example>
    <p>
    6x+3
    </p>
    <p>
    xy−3x+7y−21
    </p>
    </example>
    <p>
    The following variables are always defined.
    </p>
    <table>
    <tr>
    <td><p>ans</p></td>
    <td><p>Result of previous calculation</p></td>
    </tr>
    <tr>
    <td><p>e</p></td>
    <td><p><link xref="logarithm">Euler's Number</link></p></td>
    </tr>
    <tr>
    <td><p>π</p></td>
    <td><p><link xref="trigonometry">Pi</link></p></td>
    </tr>
    <tr>
    <td><p>rand</p></td>
    <td><p>Random value in the range [0,1] (changes on each read)</p></td>
    </tr>
    </table>
</page>