We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the result of sin(π) is not zero. sin(π()) = 1.22464679914735e-16
The text was updated successfully, but these errors were encountered:
Sadly, this is a duplicate of issue #99. There’s not much I can do about it without a whole new math library (see issue #111).
Sorry, something went wrong.
This can be fixed so:
extension Double { func isDivisible(by value: Double) -> Bool { let decimalNumberFormatter = NumberFormatter.init() decimalNumberFormatter.numberStyle = .decimal return decimalNumberFormatter.string(from: .init(value: self/value))?.contains(decimalNumberFormatter.decimalSeparator) == false } } func sin(_ value: Double) -> Double { return value.isDivisible(by: .pi) ? 0 : Foundation.sin(value) } func cos(_ value: Double) -> Double { return (.pi/2+value).isDivisible(by: .pi) ? 0 : Foundation.cos(value) } func tan(_ value: Double) -> Double { return value.isDivisible(by: .pi) ? 0 : (.pi/2+value).isDivisible(by: .pi) ? .infinity : Foundation.tan(value) }
No branches or pull requests
the result of sin(π) is not zero.
sin(π()) = 1.22464679914735e-16
The text was updated successfully, but these errors were encountered: