diff options
Diffstat (limited to 'numpy/doc/swig/Series.i')
-rw-r--r-- | numpy/doc/swig/Series.i | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/doc/swig/Series.i b/numpy/doc/swig/Series.i index 8265dd35d..f9a5b2cc3 100644 --- a/numpy/doc/swig/Series.i +++ b/numpy/doc/swig/Series.i @@ -5,27 +5,27 @@ #include "series.h" %} -// Get the Numeric typemaps +/* Get the Numeric typemaps */ %include "numpy.i" %init %{ import_array(); %} -// Apply the Numeric typemaps for 1D input arrays +/* Apply the Numeric typemaps for 1D input arrays */ %apply (short* IN_ARRAY1, int DIM1) {(short* series, int size)}; %apply (int* IN_ARRAY1, int DIM1) {(int* series, int size)}; %apply (long* IN_ARRAY1, int DIM1) {(long* series, int size)}; %apply (float* IN_ARRAY1, int DIM1) {(float* series, int size)}; %apply (double* IN_ARRAY1, int DIM1) {(double* series, int size)}; -// Apply the Numeric typemaps for 2D input arrays +/* Apply the Numeric typemaps for 2D input arrays */ %apply (int* IN_ARRAY2, int DIM1, int DIM2) {(int* matrix, int rows, int cols)}; %apply (double* IN_ARRAY2, int DIM1, int DIM2) {(double* matrix, int rows, int cols)}; -// Apply the Numeric typemaps for 1D input/output arrays +/* Apply the Numeric typemaps for 1D input/output arrays */ %apply (int* INPLACE_ARRAY1, int DIM1) {(int* array, int size)}; %apply (double* INPLACE_ARRAY1, int DIM1) {(double* array, int size)}; -// Include the header file to be wrapped +/* Include the header file to be wrapped */ %include "series.h" |