-
-
Notifications
You must be signed in to change notification settings - Fork 16
ExtendedNumerics.BigDecimal.Csc(ExtendedNumerics.BigDecimal)
Adam White edited this page Oct 7, 2024
·
1 revision
Arbitrary precision cosecant function.
The input must not be zero or π, as the cosecant is undefined at that value.
public static ExtendedNumerics.BigDecimal Csc(ExtendedNumerics.BigDecimal radians);
radians
BigDecimal
An angle, measured in radians, which is not zero, π or a multiple of π.
BigDecimal
The cosecant of radians, in radians.
System.ArgumentException
Argument radians cannot be zero.
System.ArgumentException
Argument radians cannot be π or a multiple of π.