Hi there,
I am using MATLAB and am trying to mex a c++ file.
I get a load of compiler errors and I am not sure why:
correspondPixels.cc(57) : error C2065: 'Matrix' : undeclared identifier
The line of code this relates to is:Matrix m1, m2;
Now the class should be defined in the header file I included Matrix.h. This is part of the Generic Math Template library and the code for the header file can be found here:
http://ggt.sourceforge.net/html/Matrix_8h-source.html
This really has me stumped and any help would be much appreciated! :)
Dinners