| Math | |
| Functions | |
| Math.sqrt | Compute element-wise square-root of array. |
| Math.log | Compute element-wise logarithm of array. |
| Math.cos | Compute element-wise cosinus of array. |
| Math.sin | Compute element-wise sinus of array. |
| Math.tan | Compute element-wise tangents of array. |
| Math.cosh | Compute element-wise cosinus hyperbolicus of array. |
| Math.sinh | Compute element-wise sinus hyperbolicus of array. |
| Math.tanh | Compute element-wise tangents hyperbolicus of array. |
| Math.acos | Compute element-wise arcus cosinus of array. |
| Math.asin | Compute element-wise arcus sinus of array. |
| Math.atan | Compute element-wise arcus tangents of array. |
| Math. | Elementwise computation of polar angle. |
| Math. | Elementwise computation of norm. |
Compute element-wise square-root of array.
def Math.sqrt( value )
Compute element-wise logarithm of array.
def Math.log( value )
Compute element-wise cosinus of array.
def Math.cos( value )
Compute element-wise sinus of array.
def Math.sin( value )
Compute element-wise tangents of array.
def Math.tan( value )
Compute element-wise cosinus hyperbolicus of array.
def Math.cosh( value )
Compute element-wise sinus hyperbolicus of array.
def Math.sinh( value )
Compute element-wise tangents hyperbolicus of array.
def Math.tanh( value )
Compute element-wise arcus cosinus of array.
def Math.acos( value )
Compute element-wise arcus sinus of array.
def Math.asin( value )
Compute element-wise arcus tangents of array.
def Math.atan( value )
Elementwise computation of norm.
def Math.hypot( value1, value2 )