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 !!!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

If you look at the engOpen documentation it says:

On Windows systems, engOpen opens a COM channel to MATLAB. The MATLAB software you registered during installation starts. If you did not register during installation, on the command line you can enter the command:

matlab /regserver

I'm not sure that is your problem, but it seems worth a try.

link|improve this answer
Yeah, sorry, I forgot to say I tried that already. When I execute matlab /regserver on the command line, a window pops up that says "Unable to set Registry value for MATLAB.AutoServer.Single. You may not have sufficient privileges. Re-run MATLAB as a user with Administrator access". But I am the Administrator of this machine, so I'm not sure what the problem is. – Sara Jul 20 '11 at 16:44
Sorry sorry, I feel stupid. I forgot to run the command line as an Administrator. – Sara Jul 20 '11 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.