mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
27 lines
750 B
Zig
27 lines
750 B
Zig
const std = @import("../../std.zig");
|
|
const testing = std.testing;
|
|
const math = std.math;
|
|
const cmath = math.complex;
|
|
const Complex = cmath.Complex;
|
|
|
|
// Returns the arc-sine of z.
|
|
pub fn asin(z: anytype) Complex(@TypeOf(z.re, z.im)) {
|
|
const T = @TypeOf(z.re, z.im);
|
|
const x = z.re;
|
|
const y = z.im;
|
|
|
|
const p = Complex(T).init(1.0 - (x - y) * (x + y), -2.0 * x * y);
|
|
const q = Complex(T).init(-y, x);
|
|
const r = cmath.log(q.add(cmath.sqrt(p)));
|
|
|
|
return Complex(T).init(r.im, -r.re);
|
|
}
|
|
|
|
test asin {
|
|
const epsilon = math.floatEps(f32);
|
|
const a = Complex(f32).init(5, 3);
|
|
const c = asin(a);
|
|
|
|
try testing.expectApproxEqAbs(1.0238227, c.re, epsilon);
|
|
try testing.expectApproxEqAbs(2.4529128, c.im, epsilon);
|
|
}
|