feature. See also
. The project being documented here (as the example) is the Zig library itself.
atan.atanBinary64
fn atanBinary64(x: f64) f64
File
Code
fn atanBinary64(x: f64) f64 {
const atanhi: []const f64 = &.{
4.63647609000806093515e-01,
7.85398163397448278999e-01,
9.82793723247329054082e-01,
1.57079632679489655800e+00,
};
const atanlo: []const f64 = &.{
2.26987774529616870924e-17,
3.06161699786838301793e-17,
1.39033110312309984516e-17,
6.12323399573676603587e-17,
};
const aT: []const f64 = &.{
3.33333333333329318027e-01,
-1.99999999998764832476e-01,
1.42857142725034663711e-01,
-1.11111104054623557880e-01,
9.09088713343650656196e-02,
-7.69187620504482999495e-02,
6.66107313738753120669e-02,
-5.83357013379057348645e-02,
4.97687799461593236017e-02,
-3.65315727442169155270e-02,
1.62858201153657823623e-02,
};
const hx: u64 = @bitCast(x);
const ix: u32 = @truncate((hx >> 32) & 0x7fffffff);
const sign = (hx >> 63) != 0;
if (ix >= 0x44100000) {
if (math.isNan(x)) {
return x;
}
const z = atanhi[3] + 0x1p-120;
return if (sign) -z else z;
}
const x_, const id: ?usize = blk: {
if (ix < 0x3fdc_0000) {
if (ix < 0x3e40_0000) {
if (ix < 0x0010_0000) {
mem.doNotOptimizeAway(@as(f32, @floatCast(x)));
}
return x;
}
break :blk .{ x, null };
} else {
const x_ = @abs(x);
if (ix < 0x3ff3_0000) {
if (ix < 0x3fe6_0000) {
break :blk .{ (2.0 * x_ - 1.0) / (2.0 + x_), 0 };
}
else {
break :blk .{ (x_ - 1.0) / (x_ + 1.0), 1 };
}
} else {
if (ix < 0x4003_8000) {
break :blk .{ (x_ - 1.5) / (1.0 + 1.5 * x_), 2 };
}
else {
break :blk .{ -1.0 / x_, 3 };
}
}
}
};
const z = x_ * x_;
const w = z * z;
const s1 = z * (aT[0] + w * (aT[2] + w * (aT[4] + w * (aT[6] + w * (aT[8] + w * aT[10])))));
const s2 = w * (aT[1] + w * (aT[3] + w * (aT[5] + w * (aT[7] + w * aT[9]))));
if (id) |id_| {
const z_ = atanhi[id_] - (x_ * (s1 + s2) - atanlo[id_] - x_);
return if (sign) -z_ else z_;
} else {
return x_ - x_ * (s1 + s2);
}
}