5,316,870 members and growing! (18,846 online)
Email Password   helpLost your password?
Languages » C / C++ Language » General     Intermediate

MATLAB Engine API

By A. Riazi

Using MATLAB Engine API to control MATLAB
VC6, C++Windows, Win2K, WinXP, MFC, VS6, Visual Studio, Dev

Posted: 27 May 2003
Updated: 1 Jul 2003
Views: 167,423
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
44 votes for this Article.
Popularity: 7.18 Rating: 4.37 out of 5
3 votes, 6.8%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
2 votes, 4.5%
4
39 votes, 88.6%
5

Matlab Engine API demo application

Introduction

In two past articles (Solving Engineering Problems Using MATLAB C API and Solving Engineering Problems Using MATLAB C++ Math Library), I show you how can a programmer develop an application that using MATLAB features like computing complex engineering problems. But if you are not familiar with MATLAB APIs or MATLAB C++ interface or these are hard coding techniques, this article is for you.

MATLAB Engine

MATLAB provides some API functions for controlling it. These APIs required that you installed MATLAB on your target machine. We named these APIs, MATLAB Engine API. For an alternative method, you can use MATLAB ActiveX control. For more information refer to article: A class wrapper for Matlab (C) ActiveX Control by Jonathan de Halleux.

Using MATLAB Engine

For using MATLAB engine, you must follow these steps:

  1. Add matlab.h interface file to stdafx.h or any desired interface/implementation file.
  2. Add MATLAB libraries to your project. For this reason, we need these libraries: libeng.lib, libmx.lib, libmatlb.lib, libmat.lib, libmmfile.lib.
  3. Add MatlabEng.h and MatlabEng.cpp files to your project.
  4. Declare a variable with type of CMatlabEng. (Remember to include MatlabEng.h interface file).
  5. Use member functions of CMatlabEng class, to control MATLAB and send commands to it and retrieve computed values or plotted graphs!
  6. Compile your project.

CMatlabEng

Following codes are definition of CMatlabEng class. It's very simple to use.

class CMatlabEng {
public:
    int OutputBuffer(char *p, int n);
    void OpenSingleUse(const char *startcmd, void *dcom, int *retstatus); 
    int GetVisible(bool* value); 
    int SetVisible(bool value); mxArray* GetVariable(const char* name); 
    int PutVariable(const char *name, const mxArray *mp); 
    int EvalString(const char* string);
    void Open(const char* StartCmd); int Close(); CMatlabEng();
    virtual ~CMatlabEng();
    
protected:
    Engine* pEng;
}; 

CMatlabEng in detail

Table 1 is a complete reference of member functions of CMatlabEng class.


Member Function Description
int OutputBuffer(char *p, int n); OutputBuffer defines a character buffer for EvalString to return any output that ordinarily appears on the screen.
The default behavior of EvalString is to discard any standard output caused by the command it is executing. OutputBuffer (p,n) tells any subsequent calls to EvalString to save the first n characters of output in the character buffer pointed to by p.
To turn off output buffering, use OutputBuffer(ep,NULL,0);
void OpenSingleUse (const char *startcmd, void *dcom, int *retstatus); This routine allows you to start multiple MATLAB processes for the purpose of using MATLAB as a computational engine. OpenSingleUse starts a MATLAB process, establishes a connection, and returns a unique engine identifier, or NULL if the open fails. OpenSingleUse starts a new MATLAB process each time it is called.
OpenSingleUse opens a COM channel to MATLAB. This starts the MATLAB that was registered during installation. If you did not register during installation, on the command line
you can enter the command:
matlab /regserver
OpenSingleUse allows single-use instances of a MATLAB engine server. OpenSingleUse differs from Open, which allows multiple users to use the same MATLAB engine server.
int GetVisible (bool* value); Returns status of the window for the MATLAB engine session, is visible or invisible on the Windows desktop.
int SetVisible (bool value); SetVisible makes the window for the MATLAB engine session, either visible or invisible on the Windows desktop.
You can use this function to enable or disable user interaction with the MATLAB engine session.
mxArray* GetVariable (const char* name); Reads the named mxArray from the MATLAB engine session associated with ep and returns a pointer to a newly allocated mxArray structure, or NULL if the attempt fails. GetVariable fails if the named variable does not exist.
Be careful in your code to free the mxArray created by this routine when you are finished with it.
int PutVariable (const char *name, const mxArray *mp); PutVariable writes mxArray mp to the engine ep, giving it the variable name, name. If the mxArray does not exist in the workspace, it is created. If an mxArray with the same name already exists in the workspace, the existing mxArray is replaced with the new mxArray.
int EvalString (const char* string); Evaluates the expression contained in string for the MATLAB engine session, previously started by Open.
void Open (const char* StartCmd); This routine allows you to start a MATLAB process for the purpose of using MATLAB as a computational engine.
int Close(); This routine allows you to quit a MATLAB engine session.

Sample Program

Following program is a sample that uses CMatlabEng class. Program logic is very simple.

#include "stdafx.h"

#include "MatlabEng.h"


#define message(x) printf(x"\n\n")

int main(int argc, char* argv[])
{
    CMatlabEng matlab;
    
    //open new matlab session

    message("Starting MATLAB");
    matlab.Open(NULL);

    message("Hiding MATLAB");
    matlab.SetVisible(FALSE);
    message("Press any key to continue");
    getch();

    message("Showing MATLAB");
    matlab.SetVisible(TRUE);
    message("Press any key to continue");
    getch();
    
    mxArray *T = NULL;
    double time[10] = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 };

    //create matrix

    T = mxCreateDoubleMatrix(1, 10, mxREAL);
    memcpy((void *)mxGetPr(T), (void *)time, sizeof(time));
    
    //send matrix T to matlab

    message("Send matrix T to matlab");
    matlab.PutVariable("T", T);

    //Evaluate matlab command

    matlab.EvalString("D = .5.*(-9.8).*T.^2;");

    //Plot results

    message("Plot(T, D)");
    matlab.EvalString("plot(T,D);");    
    matlab.EvalString("title('Position vs. Time for a falling object');");
    matlab.EvalString("xlabel('Time (seconds)');");
    matlab.EvalString("ylabel('Position (meters)');");
    matlab.EvalString("grid;");

    //pause to see results

    message("Press any key to continue");
    getch();
    
    //destroy matrix

    mxDestroyArray(T);
    
    //show MATLAB graphics capabilities

    message("Showing MATLAB graphics capabilities");
    matlab.EvalString("z=peaks(25);");
    matlab.EvalString("surf(z);");
    matlab.EvalString("colormap(jet);");
    matlab.EvalString("knot;");

    //pause

    getch();

    //close session

    matlab.Close();

    return 0;
}
Enjoy!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

A. Riazi


I was born in Shiraz, a very beautiful famous city in Iran. I started programming when I was 12 years old with GWBASIC. Since now, I worked with various programming languages from Basic, Foxpro, C/C++, Visual Basic, Pascal to MATLAB and now Visual C++.
I graduated from Iran University of Science & Technology in Communication Eng., and now work as a system programmer for a telecommunication industry.
I wrote several programs and drivers for Synthesizers, Power Amplifiers, GPIB, GPS devices, Radio cards, Data Acqusition cards and so many related devices.
I'm author of several books like Learning C (primary and advanced), Learning Visual Basic, API application for VB, Teach Yourself Object Oriented Programming (OOP) and etc.
I'm winner of January, May, August 2003 and April 2005 best article of month competetion, my articles are:


You can see list of my articles, by clicking here


Occupation: Software Developer (Senior)
Company: Misbah3Com
Location: Iran, Islamic Republic Of Iran, Islamic Republic Of

Other popular C / C++ Language articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 173 (Total in Forum: 173) (Refresh)FirstPrevNext
Subject  Author Date 
Generallibmatlb.lib and libmmfile.libmembertraveller10212:31 21 Oct '07  
GeneralRe: libmatlb.lib and libmmfile.libmembergvallemoura2:54 20 Nov '07  
Questionmatlab - vc++ (please help me)memberArif W.P.13:15 4 Oct '07  
Generalunresolved external symbol engOpenmemberTom_Me4:55 8 Feb '07  
Generalunhandled exceptionmembermdpatterson7210:29 30 Jan '07  
GeneralCMatlabEng Instance as member variable doesn't work.member22:53 21 Jan '07  
GeneralRe: CMatlabEng Instance as member variable doesn't work.memberS. Fischer3:36 26 Jan '07  
GeneralCannot open file "libeng.lib"memberJungsun Um23:14 9 Jan '07  
GeneralRe: Cannot open file "libeng.lib"memberA. Riazi5:35 10 Jan '07  
AnswerRe: Cannot open file "libeng.lib"memberLaston10:54 10 Jan '07  
QuestionOutput Variable Value in C++memberLaston15:06 9 Jan '07  
AnswerRe: Output Variable Value in C++memberA. Riazi19:10 9 Jan '07  
GeneralRe: Output Variable Value in C++ [modified]memberLaston10:52 10 Jan '07  
AnswerRe: Output Variable Value in C++memberA. Riazi11:08 10 Jan '07  
GeneralRe: Output Variable Value in C++memberLaston11:20 10 Jan '07  
QuestionWhere is matlab.h? [modified]memberxb2119:53 1 Dec '06  
AnswerRe: Where is matlab.h?memberifeefreenow17:24 5 Dec '06  
AnswerRe: Where is matlab.h?memberlgzhang17:59 5 Mar '07  
GeneralIntergrating into existing C++ project in UNIXmemberkevinyeudoi8:34 21 Aug '06  
GeneralRe: Intergrating into existing C++ project in UNIXmemberA. Riazi2:15 22 Aug '06  
Generalhow to embed matlab figure into winform?memberdahuzia17:47 13 Jul '06  
Questioncall openCV functions from matlabmemberastrho203:48 10 May '06  
AnswerRe: call openCV functions from matlabmemberA. Riazi7:41 10 May '06  
GeneralError in compilingmemberrezaghorbani14:09 15 Apr '06  
AnswerRe: Error in compilingmemberA. Riazi22:13 15 Apr '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 1 Jul 2003
Editor: Chris Maunder
Copyright 2003 by A. Riazi
Everything else Copyright © CodeProject, 1999-2008
Web10 | Advertise on the Code Project