Real trig functions¶
Floating point trigonometric functions.
- boring_math.special_functions.trig.sin(θ: float) float¶
Sine for all real
θ = 0.- Parameters:
θ – Angle in radians.
- Returns:
Sine of angle
θ.
- boring_math.special_functions.trig.cos(θ: float) float¶
Cosine for all
θ = 0.- Parameters:
θ – Angle in radians.
- Returns:
Cosine of angle
θ.
- boring_math.special_functions.trig.tan(θ: float) float¶
Tangent for all real
θ = 0.- Parameters:
θ – Angle in radians.
- Returns:
Tangent of angle
θ.