I'm having a problem when I try to call a Matlab funcion from my C++ code.
When I call engOpen, it always returns NULL. Here is the code:
Engine *m_pEngine;
m_pEngine = engOpen(NULL);
if(m_pEngine == NULL)
{
cout << "Error" << endl;
exit(1);
}
Does somebody know how to solve this?
Thanks !!!