math.sincos() function
The math.sincos()
function returns the values of math.sin(x:x)
and math.cos(x:x)
.
Output data format: Record
import "math"
math.sincos(x: 1.23)
// Returns {sin: 0.9424888019316975, cos: 0.3342377271245026}
Parameters
x
The value used in the operation.
Data type: Float
Special cases
math.sincos(x: ±0) // Returns {sin: ±0, cos: 1}
math.sincos(x: ±Inf) // Returns {sin: NaN, cos: NaN}
math.sincos(x: NaN) // Returns {sin: NaN, cos: NaN}
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.