- Timestamp:
- 04/04/18 11:46:26 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/wrappers/python/io/WritePythonData.cpp ΒΆ
r21624 r22674 93 93 dim=(npy_intp)M; 94 94 array=PyArray_SimpleNewFromData(1,&dim,NPY_DOUBLE,vector_python); 95 96 PyTuple_SetItem(py_tuple, index, array); 97 98 }/*}}}*/ 99 /*FUNCTION WriteData(PyObject* py_tuple,int index, short* vector, int M){{{*/ 100 void WriteData(PyObject* py_tuple, int index,short* vector, int M){ 101 102 long* lvector=NULL; 103 npy_intp dim=10; 104 PyObject* array=NULL; 105 106 /*transform into long matrix: */ 107 lvector=xNew<long>(M); 108 for(int i=0;i<M;i++)lvector[i]=(long)vector[i]; 109 110 dim=(npy_intp)M; 111 array=PyArray_SimpleNewFromData(1,&dim,NPY_INT64,lvector); 95 112 96 113 PyTuple_SetItem(py_tuple, index, array);
Note:
See TracChangeset
for help on using the changeset viewer.