#[no_mangle]
pub extern "C" fn nstd_math_atan2_f64(
    x: NSTDFloat64,
    y: NSTDFloat64
) -> NSTDFloat64
Available on crate feature nstd_math only.
Expand description

Computes the four quadrant arctangent of x & y.

Parameters:

  • NSTDFloat64 x - The value.

  • NSTDFloat64 y - The second value.

Returns

NSTDFloat64 atan2 - The four quadrant arctangent of x & y.