/[svn]/doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html
ViewVC logotype

Diff of /doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3580 by schoenebeck, Thu Aug 29 13:44:35 2019 UTC revision 3601 by schoenebeck, Mon Sep 16 16:03:36 2019 UTC
# Line 34  Line 34 
34          <td>Stops execution of a script callback.</td>          <td>Stops execution of a script callback.</td>
35        </tr>        </tr>
36        <tr>        <tr>
37            <td><code lang="nksp">acos()</code></td>
38            <td>Arc cosine function.</td>
39          </tr>
40          <tr>
41          <td><code>abs()</code></td>          <td><code>abs()</code></td>
42          <td>Calculates the absolute value of a given value.</td>          <td>Calculates the absolute value of a given value.</td>
43        </tr>        </tr>
# Line 42  Line 46 
46          <td>Check whether two arrays are equal.</td>          <td>Check whether two arrays are equal.</td>
47        </tr>        </tr>
48        <tr>        <tr>
49            <td><code>asin()</code></td>
50            <td>Arc sine function.</td>
51          </tr>
52          <tr>
53            <td><code>atan()</code></td>
54            <td>Arc tangens function.</td>
55          </tr>
56          <tr>
57          <td><code>callback_status()</code></td>          <td><code>callback_status()</code></td>
58          <td>Returns the current status of a callback (thread).</td>          <td>Returns the current status of a callback (thread).</td>
59        </tr>        </tr>
60        <tr>        <tr>
61            <td><code>ceil()</code></td>
62            <td>Rounds the given real number up.</td>
63          </tr>
64          <tr>
65            <td><code>cos()</code></td>
66            <td>Cosine function.</td>
67          </tr>
68          <tr>
69          <td><code lang="nksp">dec()</code></td>          <td><code lang="nksp">dec()</code></td>
70          <td>Decrements the passed integer variable by one.</td>          <td>Decrements the passed integer variable by one.</td>
71        </tr>        </tr>
# Line 54  Line 74 
74          <td>Stops execution of the current event handler instance.</td>          <td>Stops execution of the current event handler instance.</td>
75        </tr>        </tr>
76        <tr>        <tr>
77            <td><code>exp()</code></td>
78            <td>Calculates e raised by given power.</td>
79          </tr>
80          <tr>
81            <td><code>floor()</code></td>
82            <td>Rounds the given real number down.</td>
83          </tr>
84          <tr>
85          <td><code>fork()</code></td>          <td><code>fork()</code></td>
86          <td>Creates new execution instances (threads).</td>          <td>Creates new execution instances (threads).</td>
87        </tr>        </tr>
# Line 62  Line 90 
90          <td>Increments the passed integer variable by one.</td>          <td>Increments the passed integer variable by one.</td>
91        </tr>        </tr>
92        <tr>        <tr>
93            <td><code>int()</code></td>
94            <td>Short-hand alias function for function <code>real_to_int()</code>.</td>
95          </tr>
96          <tr>
97            <td><code>int_to_real()</code></td>
98            <td>Type cast from integer number to real number.</td>
99          </tr>
100          <tr>
101          <td><code>in_range()</code></td>          <td><code>in_range()</code></td>
102          <td>Checks whether a value is between two other values.</td>          <td>Checks whether a value is between two other values.</td>
103        </tr>        </tr>
104        <tr>        <tr>
105            <td><code>log()</code></td>
106            <td>Calculates the natural logarithm of given number.</td>
107          </tr>
108          <tr>
109            <td><code>log10()</code></td>
110            <td>Calculates the logarithm to base 10 of given number.</td>
111          </tr>
112          <tr>
113            <td><code>log2()</code></td>
114            <td>Calculates the logarithm to base 2 of given number.</td>
115          </tr>
116          <tr>
117          <td><code>max()</code></td>          <td><code>max()</code></td>
118          <td>Calculates the maximum value of two given values.</td>          <td>Calculates the maximum value of two given values.</td>
119        </tr>        </tr>
# Line 82  Line 130 
130          <td>Returns the size of the requested array variable.</td>          <td>Returns the size of the requested array variable.</td>
131        </tr>        </tr>
132        <tr>        <tr>
133            <td><code>pow()</code></td>
134            <td>Calculates given base raised by given power.</td>
135          </tr>
136          <tr>
137          <td><code>random()</code></td>          <td><code>random()</code></td>
138          <td>Random number generator.</td>          <td>Random number generator.</td>
139        </tr>        </tr>
140        <tr>        <tr>
141            <td><code>real()</code></td>
142            <td>Short-hand alias function for function <code>int_to_real()</code>.</td>
143          </tr>
144          <tr>
145            <td><code>real_to_int()</code></td>
146            <td>Type cast from real number to integer number.</td>
147          </tr>
148          <tr>
149            <td><code>round()</code></td>
150            <td>Rounds the given real number.</td>
151          </tr>
152          <tr>
153          <td><code>search()</code></td>          <td><code>search()</code></td>
154          <td>Search for a certain value within an array.</td>          <td>Search for a certain value within an array.</td>
155        </tr>        </tr>
# Line 98  Line 162 
162          <td>Calculates a right bit shifted value.</td>          <td>Calculates a right bit shifted value.</td>
163        </tr>        </tr>
164        <tr>        <tr>
165            <td><code>sin()</code></td>
166            <td>Sine function.</td>
167          </tr>
168          <tr>
169          <td><code>sort()</code></td>          <td><code>sort()</code></td>
170          <td>Sort the given array.</td>          <td>Sort the given array.</td>
171        </tr>        </tr>
172        <tr>        <tr>
173            <td><code>sqrt()</code></td>
174            <td>Calculates the square root of given number.</td>
175          </tr>
176          <tr>
177          <td><code>stop_wait()</code></td>          <td><code>stop_wait()</code></td>
178          <td>Resumes execution of a suspended script callback.</td>          <td>Resumes execution of a suspended script callback.</td>
179        </tr>        </tr>
180        <tr>        <tr>
181            <td><code>tan()</code></td>
182            <td>Tangens function.</td>
183          </tr>
184          <tr>
185          <td><code>wait()</code></td>          <td><code>wait()</code></td>
186          <td>Pauses execution for a certain amount of time.</td>          <td>Pauses execution for a certain amount of time.</td>
187        </tr>        </tr>
# Line 459  Line 535 
535          <td>Built-in constant reflecting a <code>controller</code> event handler type.</td>          <td>Built-in constant reflecting a <code>controller</code> event handler type.</td>
536        </tr>        </tr>
537        <tr>        <tr>
538            <td><code>$NI_MATH_E</code></td>
539            <td>Base of the natural logarithm (approximately being <code>2.71828</code>)</td>
540          </tr>
541          <tr>
542            <td><code>$NI_MATH_PI</code></td>
543            <td>Natural constant relfecting the ratio of a circle's circumference to its diameter (approximately being <code>3.14159</code>).</td>
544          </tr>
545          <tr>
546          <td><code>$NKSP_IGNORE_WAIT</code></td>          <td><code>$NKSP_IGNORE_WAIT</code></td>
547          <td>If this boolean built-in variable is <code>1</code> then all calls of your          <td>If this boolean built-in variable is <code>1</code> then all calls of your
548              event handler instance to function <code>wait()</code> will be ignored.              event handler instance to function <code>wait()</code> will be ignored.

Legend:
Removed from v.3580  
changed lines
  Added in v.3601

  ViewVC Help
Powered by ViewVC