Ignore:
Timestamp:
04/04/18 11:46:26 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: working on making Chaco and MeshPartition python friendly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/wrappers/python/io/WritePythonData.cpp ΒΆ

    r21624 r22674  
    9393        dim=(npy_intp)M;
    9494        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){{{*/
     100void 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);
    95112
    96113        PyTuple_SetItem(py_tuple, index, array);
Note: See TracChangeset for help on using the changeset viewer.