-
-
Notifications
You must be signed in to change notification settings - Fork 12.2k
Implement sincos() (Trac #2034) #2626
Description
Original ticket http://projects.scipy.org/numpy/ticket/2034 on 2012-01-30 by trac user nschloe, assigned to unknown.
Hi,
NumPy has capabilites for all kinds of trigonometric functions, but still missing out one important bit.
In most every case I know of, both the sine and cosine of an angle need to be computed (e.g. for the representation of a circle).
Numerically, sine and cosine can be evaluated at the same time, thus saving a great deal of complexity. This numerical method is implemented in http://linux.die.net/man/3/sincos, for example.
Cheers,
Nico