Artifact 7d4f1bcd2ca15089738ba68cb8b36967d68d50bda257de1638d5f90e8e5f43c6:
- File mtt/lib/cc/mtt_matlab_octave.hh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 510) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/cc/mtt_matlab_octave.hh — part of check-in [cdb81663cf] at 2002-05-08 14:51:04 on branch origin/master — Moved matlab/octave data type conversion functions to a separate file. (user: geraint@users.sourceforge.net, size: 510) [annotate] [blame] [check-ins using]
#ifndef MTT_MATLAB_OCTAVE_HH #define MTT_MATLAB_OCTAVE_HH #include <octave/oct.h> #include <mex.h> // conversions from Matlab mxArray* to Octave data types extern Matrix mtt_Matrix (const mxArray *m); extern ColumnVector mtt_ColumnVector (const mxArray *m); extern const double mtt_double (const mxArray *m); // conversions from Octave data types to Matlab mxArray* extern mxArray * mtt_mxArray (const Matrix &o); extern mxArray * mtt_mxArray (const ColumnVector &o); #endif // MTT_MATLAB_OCTAVE_HH