mymath.trigonometry.cst
Some basic trigonometric functions
Module Contents
Functions
|
Determine sine of x |
|
Determine cosine of x |
|
Determine the inverse sine of given Value |
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
