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
Reduced after much effort:
k = [interval(0.0,0.0625), interval(0.0625,0.125), interval(0.0,0.125)] @show x = (k[1] * 4 + k[2] * 4 + k[3] * 4) @show cos(2 * π * x) @show cospi(2x)
x = k[1] * 4 + k[2] * 4 + k[3] * 4 = [0.25, 1.25001]_com_NG cos(2 * π * x) = [3.06161e-16, 6.12324e-17]_com_NG cospi(2x) = [-1.0, 1.0]_com_NG
Cos is just plainly wrong here. Cospi appears to be fine.
The text was updated successfully, but these errors were encountered:
Thx for reporting this issue!
Sorry, something went wrong.
Thanks for the quick fix!
Successfully merging a pull request may close this issue.
Reduced after much effort:
Cos is just plainly wrong here. Cospi appears to be fine.
The text was updated successfully, but these errors were encountered: