You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base.cis, when called with an argument that is in degrees, first converts the argument to radians, and then calls sincos, resulting in output that is less precise. Possibly related to Issue 450.
Personally, I like dispatching to the degree versions. The user can always uconvert to rad before calling these functions if better performance is required.
Base.cis
, when called with an argument that is in degrees, first converts the argument to radians, and then callssincos
, resulting in output that is less precise. Possibly related to Issue 450.This can be seen in the following snippet.
However, when calling
sincos
directly, the correct method is chosen:The text was updated successfully, but these errors were encountered: