Trigonometry

acos(*args, **kwargs)

Overloaded function.

asin(*args, **kwargs)

Overloaded function.

atan(*args, **kwargs)

Overloaded function.

atan2(*args, **kwargs)

Overloaded function.

cos(*args, **kwargs)

Overloaded function.

sin(*args, **kwargs)

Overloaded function.

tan(*args, **kwargs)

Overloaded function.

lue.framework.acos(cosine)

Compute the principal value of the arc cosine

Parm cosine:

Datastructure containing cosines

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

lue.framework.asin(sine)

Compute the principal value of the arc sine

Parm sine:

Datastructure containing sines

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

lue.framework.atan(tangent)

Compute the principal value of the arc tangent

Parm tangent:

Datastructure containing tangents

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

lue.framework.atan2(y, x)

Compute the arc tangent of y/x

Parm y:

Datastructure containing distances in y-direction

Parm x:

Datastructure containing distances in x-direction

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

The signs of the arguments is used to determine the correct quadrant.

lue.framework.cos(angle)

Compute the cosine

Parm angle:

Datastructure containing angles in radians

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

lue.framework.sin(angle)

Compute the sine

Parm angle:

Datastructure containing angles in radians

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.

lue.framework.tan(angle)

Compute the tangent

Parm angle:

Datastructure containing angles in radians

Returns:

New instance of the same datastructure as passed in

This function is overloaded for arrays containing float32 and float64 elements.