~vjsamuel/drizzle/fix-bug-850898

« back to all changes in this revision

Viewing changes to docs/functions/mathematical.rst

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Mathematical Functions and Operators
 
1
Mathematical Operators and Functions
2
2
====================================
3
3
 
 
4
Operators
 
5
---------
 
6
 
4
7
Mathematical operators are provided for many Drizzle types.
5
8
 
6
9
========    ==================   ============  ======
18
21
``@``       absolute value       ``@ -5.0``    5
19
22
========    ==================   ============  ======
20
23
 
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
 
 
56
 
 
57
 
 
58
 
 
59
 
 
60
 
 
61
 
 
62
 
 
63
 
 
64
 
 
65
 
 
66
 
 
67
 
 
68
 
 
69
 
 
70
 
 
71
 
 
72
 
 
73
 
 
74
 
 
75
 
 
76
 
 
77
 
 
78
 
 
79
 
 
80
 
 
81
 
 
82
 
 
83
 
 
 
24
.. _math_functions:
 
25
 
 
26
Functions
 
27
---------
 
28
 
 
29
The follow mathematical functions are provided by the
 
30
:doc:`/plugins/math_functions/index` plugin.
 
31
 
 
32
========  ======================
 
33
Funciton  Description
 
34
========  ======================
 
35
ABS       Absolute value
 
36
ACOS      Inverse cosine
 
37
ASIN      Inverse sine
 
38
ATAN      Inverse tangent
 
39
ATAN2     Inverse tangent
 
40
COS       Cosine
 
41
LOG       Natural logarithm
 
42
LOG2      Natural logarithm
 
43
LOG10     Base 10 logarithm
 
44
SIN       Sine
 
45
POW       Power
 
46
POWER     Power
 
47
LN        Natural logaritm
 
48
SQRT      Squart root
 
49
CEIL      Ceiling
 
50
CEILING   Ceiling
 
51
EXP       Exponential
 
52
FLOOR     Floor
 
53
ORD       Ordinal
 
54
========  ======================
84
55