Math

Summary
Math
Functions
Math.sqrtCompute element-wise square-root of array.
Math.logCompute element-wise logarithm of array.
Math.cosCompute element-wise cosinus of array.
Math.sinCompute element-wise sinus of array.
Math.tanCompute element-wise tangents of array.
Math.coshCompute element-wise cosinus hyperbolicus of array.
Math.sinhCompute element-wise sinus hyperbolicus of array.
Math.tanhCompute element-wise tangents hyperbolicus of array.
Math.acosCompute element-wise arcus cosinus of array.
Math.asinCompute element-wise arcus sinus of array.
Math.atanCompute element-wise arcus tangents of array.
Math.atan2Elementwise computation of polar angle.
Math.hypotElementwise computation of norm.

Functions

Math.sqrt

def Math.sqrt(value)

Compute element-wise square-root of array.

Math.log

def Math.log(value)

Compute element-wise logarithm of array.

Math.cos

def Math.cos(value)

Compute element-wise cosinus of array.

Math.sin

def Math.sin(value)

Compute element-wise sinus of array.

Math.tan

def Math.tan(value)

Compute element-wise tangents of array.

Math.cosh

def Math.cosh(value)

Compute element-wise cosinus hyperbolicus of array.

Math.sinh

def Math.sinh(value)

Compute element-wise sinus hyperbolicus of array.

Math.tanh

def Math.tanh(value)

Compute element-wise tangents hyperbolicus of array.

Math.acos

def Math.acos(value)

Compute element-wise arcus cosinus of array.

Math.asin

def Math.asin(value)

Compute element-wise arcus sinus of array.

Math.atan

def Math.atan(value)

Compute element-wise arcus tangents of array.

Math.atan2

Elementwise computation of polar angle.

Math.hypot

def Math.hypot(value1,
value2)

Elementwise computation of norm.

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