~inkscape.dev/inkscape-devlibs64/trunk

« back to all changes in this revision

Viewing changes to python/Lib/site-packages/numpy/core/include/numpy/npy_math.h

  • Committer: Eduard Braun
  • Date: 2016-10-22 16:51:19 UTC
  • Revision ID: eduard.braun2@gmx.de-20161022165119-9eosgy6lp8j1kzli
Update Python to version 2.7.12

Included modules:
  coverage 4.2
  lxml 3.6.4
  numpy 1.11.2
  scour 0.35
  six 1.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
#define NPY_PI_4f     0.785398163397448309615660845819875721F /* pi/4 */
88
88
#define NPY_1_PIf     0.318309886183790671537767526745028724F /* 1/pi */
89
89
#define NPY_2_PIf     0.636619772367581343075535053490057448F /* 2/pi */
90
 
#define NPY_EULERf    0.577215664901532860606512090082402431F /* Euler constan*/
 
90
#define NPY_EULERf    0.577215664901532860606512090082402431F /* Euler constant */
91
91
#define NPY_SQRT2f    1.414213562373095048801688724209698079F /* sqrt(2) */
92
92
#define NPY_SQRT1_2f  0.707106781186547524400844362104849039F /* 1/sqrt(2) */
93
93
 
101
101
#define NPY_PI_4l     0.785398163397448309615660845819875721L /* pi/4 */
102
102
#define NPY_1_PIl     0.318309886183790671537767526745028724L /* 1/pi */
103
103
#define NPY_2_PIl     0.636619772367581343075535053490057448L /* 2/pi */
104
 
#define NPY_EULERl    0.577215664901532860606512090082402431L /* Euler constan*/
 
104
#define NPY_EULERl    0.577215664901532860606512090082402431L /* Euler constant */
105
105
#define NPY_SQRT2l    1.414213562373095048801688724209698079L /* sqrt(2) */
106
106
#define NPY_SQRT1_2l  0.707106781186547524400844362104849039L /* 1/sqrt(2) */
107
107
 
309
309
double npy_rad2deg(double x);
310
310
double npy_logaddexp(double x, double y);
311
311
double npy_logaddexp2(double x, double y);
 
312
double npy_divmod(double x, double y, double *modulus);
312
313
 
313
314
float npy_deg2radf(float x);
314
315
float npy_rad2degf(float x);
315
316
float npy_logaddexpf(float x, float y);
316
317
float npy_logaddexp2f(float x, float y);
 
318
float npy_divmodf(float x, float y, float *modulus);
317
319
 
318
320
npy_longdouble npy_deg2radl(npy_longdouble x);
319
321
npy_longdouble npy_rad2degl(npy_longdouble x);
320
322
npy_longdouble npy_logaddexpl(npy_longdouble x, npy_longdouble y);
321
323
npy_longdouble npy_logaddexp2l(npy_longdouble x, npy_longdouble y);
 
324
npy_longdouble npy_divmodl(npy_longdouble x, npy_longdouble y,
 
325
                           npy_longdouble *modulus);
322
326
 
323
327
#define npy_degrees npy_rad2deg
324
328
#define npy_degreesf npy_rad2degf