Skip to content

Commit a788b0d

Browse files
committed
adding some function help files for field calculator, thanks to Zoltan Siki
1 parent a71946c commit a788b0d

12 files changed

+150
-0
lines changed

resources/function_help/acos-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>acos() function</h3>
2+
Returns arcuscosinus of a value in radians.
3+
4+
5+
<p><h4>Syntax</h4>
6+
acos(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> cos of an angle.</p>
10+
11+
<p><h4>Example</h4>
12+
acos(0.5) -> 1.0471975511966</p>

resources/function_help/asin-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>asin() function</h3>
2+
Returns arcussinus of a value in radians.
3+
4+
5+
<p><h4>Syntax</h4>
6+
asin(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> sin of an angle.</p>
10+
11+
<p><h4>Example</h4>
12+
asin(1.0) -> 1.5707963267949</p>

resources/function_help/atan-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>atan() function</h3>
2+
Returns arcustanget of a value in radians.
3+
4+
5+
<p><h4>Syntax</h4>
6+
atan(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> tan of an angle.</p>
10+
11+
<p><h4>Example</h4>
12+
atan(0.5) -> 0.463647609000806</p>

resources/function_help/atan2-en_US

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h3>atan2() function</h3>
2+
Returns arcustangens of y/x using the signs of the two
3+
arguments to determine the quadrant of the result
4+
5+
6+
7+
<p><h4>Syntax</h4>
8+
atan2(<i>real</i>, <i>real</i>)</p>
9+
10+
<p><h4>Arguments</h4>
11+
<i>real</i> -> y coordinate difference<br>
12+
<i>real</i> -> x coordinate difference</p>
13+
14+
<p><h4>Example</h4>
15+
atan2(1.0, 1.732) -> 0.523611477769969</p>

resources/function_help/cos-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>cos() function</h3>
2+
Returns cosinus of an angle.
3+
4+
5+
<p><h4>Syntax</h4>
6+
cos(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> angle in radians.</p>
10+
11+
<p><h4>Example</h4>
12+
cos(1.571) -> 0.000796326710733263</p>

resources/function_help/exp-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>exp() function</h3>
2+
Returns exponential of an value.
3+
4+
5+
<p><h4>Syntax</h4>
6+
exp(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> number.</p>
10+
11+
<p><h4>Example</h4>
12+
exp(1.0) -> 2.71828182845905</p>

resources/function_help/sin-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>sin() function</h3>
2+
Returns sinus of an angle.
3+
4+
5+
<p><h4>Syntax</h4>
6+
sin(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> angle in radians.</p>
10+
11+
<p><h4>Example</h4>
12+
sin(1.571) -> 0.999999682931835</p>

resources/function_help/sqrt-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>sqrt() function</h3>
2+
Returns square root of a value
3+
4+
5+
<p><h4>Syntax</h4>
6+
sqrt(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> number.</p>
10+
11+
<p><h4>Example</h4>
12+
sqrt(9) -> 3</p>

resources/function_help/tan-en_US

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>tan() function</h3>
2+
Returns tangent of an angle.
3+
4+
5+
<p><h4>Syntax</h4>
6+
tan(<i>real</i>)</p>
7+
8+
<p><h4>Arguments</h4>
9+
<i>real</i> -> angle in radians.</p>
10+
11+
<p><h4>Example</h4>
12+
tan(1.0) -> 1.5574077246549</p>

resources/function_help/toint-en_US

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<h3>toint function</h3>
2+
Converts a string to integer number. Nothing changed if a value cannot be converted to integer (e.g '123asd' is invalid).
3+
4+
<p><h4>Syntax</h4>
5+
toint(<i>string</i>)</p>
6+
7+
<p><h4>Arguments</h4>
8+
<!-- List args for functions here-->
9+
<i> string</i> -> is string. The String to convert to integer number.</p>
10+
11+
<p><h4>Example</h4>
12+
<!-- Show example of function.-->
13+
toint('123') -> 123</p>

resources/function_help/toreal-en_US

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<h3>toreal function</h3>
2+
Converts a string to real number. Nothing changed if a value cannot be converted to real (e.g '123.56asd' is invalid). Numbers are rounded after saving changes if the precision is smaller than the result of the conversion.
3+
4+
<p><h4>Syntax</h4>
5+
toreal(<i>string</i>)</p>
6+
7+
<p><h4>Arguments</h4>
8+
<!-- List args for functions here-->
9+
<i> string</i> -> is string. The String to convert to real number.</p>
10+
11+
<p><h4>Example</h4>
12+
<!-- Show example of function.-->
13+
toreal('123.45') -> 123.45</p>
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<h3>tostring function</h3>
2+
Converts a number to string.
3+
4+
<p><h4>Syntax</h4>
5+
tostring(<i>number</i>)</p>
6+
7+
<p><h4>Arguments</h4>
8+
<!-- List args for functions here-->
9+
<i>number</i> -> is integer or real. The number to convert to string.</p>
10+
11+
<p><h4>Example</h4>
12+
<!-- Show example of function.-->
13+
tostring(123) -> '123'</p>

0 commit comments

Comments
 (0)