One Animation Logo

REPOS

APIDOCS

mymath.trigonometry.cst

Some basic trigonometric functions

Module Contents

Functions

sine(x)

Determine sine of x

cosine(x)

Determine cosine of x

inverse_sine(x)

Determine the inverse sine of given Value

inverse_cosine(x)

Determine the inverse cosine of given Value

mymath.trigonometry.cst.sine(x)

Determine sine of x

Parameters

x (float) – input parameter x in radians

Returns

sine value of x

Return type

float

mymath.trigonometry.cst.cosine(x)

Determine cosine of x

Parameters

x (float) – input parameter x in radians

Returns

cosine value of x

Return type

float

mymath.trigonometry.cst.inverse_sine(x)

Determine the inverse sine of given Value

Parameters

x (float) – sine value for which angle is to be found

Returns

angle in radians

Return type

float

mymath.trigonometry.cst.inverse_cosine(x)

Determine the inverse cosine of given Value

Parameters

x (float) – cosine value for which angle is to be found

Returns

angle in radians

Return type

float