#ifndef _MATLAB_H_ #define _MATLAB_H_ #include // Write floating-point data out to a .MAT file as an array // width x height x 3. The samples are grouped per pixel. void writeFile(float * data, uint32 width, uint32 height, const char * name, const char * input, const char * varname); void error(const char * str); #endif