Click here to Skip to main content
15,860,861 members
Articles / Desktop Programming / MFC
Article

Solving Engineering Problems Using MATLAB C API

Rate me:
Please Sign up or sign in to vote.
4.84/5 (46 votes)
23 May 20035 min read 643.3K   5.5K   81   176
Using MATLAB engine to solve engineering problems.

Solving engineering problem using MATLAB

Introduction

As all of you know, MATLAB is a powerful engineering language. Because of some limitation, some tasks take very long time to proceed. Also MATLAB is an interpreter not a compiler. For this reason, executing a MATLAB program (m file) is time consuming.  For solving this problem, Mathworks provides us C Math Library or in common language, MATLAB API.  A developer can employ these APIs to solve engineering problems very fast and easy. This article is about how can use these APIs.

MATrix LABoratory

MATLAB is abbreviation of Matrix Laboratory. This means every computation was performed in matrix form. In other hand every data type wrapped in matrix form and every functions take these matrix as input argument.
For example you want to multiply to polynomial as follow:

A = (3x2 + 5x + 7) (4x5 + 3x3 - x2 + 1)

You can use two matrices for coefficients of any polynomials:

[3 5 7] for (3x2 + 5x + 7) and [4 0 3 -1 0 1] for (4x5 + 3x3 - x2 + 1), using conv function, we can obtain coefficients of result: conv([3 5 7], [4 0 3 -1 0 1]):

A = [12 20 37 12 16 -4 5 7]

means: A= 12x7 + 20x6 + 37x5 + 12x4 + 16x3 - 4x2 + 5x + 7

C Math Library

The functions fall into two groups: the mathematical functions and the utility functions. We use mathematical functions for computing and utility functions for constructing an array or matrix or printing content of a matrix. Every matrices represented by mxArray a data type introduced by MATLAB for constructing a matrix. As I said before, every data must be wrapped in a matrix form in other hand: mxArray

One C prototype supports all the possible ways to call a particular MATLAB C Math Library function. You can reconstruct the C prototype by examining the MATLAB syntax for a function. In the following procedure, the MATLAB function svd() and the corresponding library function mlfSvd() are used to illustrate the process.

MATLAB Syntax

s = svd (X)
[U, S, V] = svd (X)
[U, S, V] = svd (X, 0)

The C prototype for mlfSvd() is constructed step-by-step. Until the last step, the prototype is incomplete.

Adding the Output Arguments

1- Find the statement that includes the largest number of output arguments.
Choose:

[U, S, V] = svd (X, 0)

2- Subtract out the first output argument, U, to be the return value from the function. The data type for the return value is mxArray*.

mxArray* mlfSvd(

3- Add the remaining number of MATLAB output arguments, S and V, as the first, second, etc., arguments to the C function. The data type for a C output argument is mxArray**.

mxArray* mlfSvd(mxArray **S, mxArray **V

Adding the Input Arguments

1- Find the syntax that includes the largest number of input arguments.
Choose:

[U, S, V] = svd (X, 0)

2- Add that number of input arguments, X and Zero, to the prototype, one after another following the output arguments. The data type for an input argument is mxArray*.

mxArray* mlfSvd (mxArray** S, mxArray** V, mxArray* X, mxArray* Zero);

The prototype is complete.

How to Translate a MATLAB Call into a C Call

This procedure demonstrates how to translate the MATLAB svd() calls into MATLAB C Math Library calls to mlfSvd(). The procedure applies to library functions in general.
Note that within a call to a MATLAB C Math Library function, an output argument is preceded by &, an input argument is not.
MATLAB Syntax:


s = svd (X)
[U, S, V] = svd (X)
[U, S, V] = svd (X, 0)
 

The MATLAB arguments to svd() fall into these categories:
U (or s) is a required output argument.
S and V are optional output arguments.
X is a required input argument.
Zero is an optional input argument.
 

1- Declare input, output, and return variables as mxArray* variables, and assign values to the input variables.
2- Make the first output argument the return value from the function.
s =
U =
U =
3- Pass any additional required or optional output arguments as the first arguments to the function. Pass a NULL argument wherever an optional output argument does not apply to the particular call.
 

s = mlfSvd (NULL, NULL,
U = mlfSvd(&S, &V,
U = mlfSvd(&S, &V,

4- Pass any required or optional input arguments that apply to the C function, following the output arguments. Pass a NULL argument wherever an optional input argument does not apply to the particular call.
 

s = mlfSvd (NULL, NULL, X, NULL);
U = mlfSvd (&S, &V, X, NULL);
U = mlfSvd (&S, &V, X, Zero);

Mathematical Functions

Every mathematical functions are begin with mlf prefix. mlf is an abbreviation for MATLAB Function. Below is a list of useful mathematical functions:

mlfPlus, mlfMinusmlfMtimes, mlfMpowermlfAcos, mlfAsinmlfConv
mlfConjmlfDec2bin, mlfDec2hexmlfDispmlfFft, mlfFft2
mlfLinspacemlfMax, mlfMinmlfRootsmlfRot90

For example, Conv statement in MATLAB will become mlfConv in C.

Utility Functions

We use utility functions for some tasks like printing content of a matrix or saving/loading data to/from a file. Every utility functions are begin with mx prefix. Below is a list of some utility functions:

mxCalloc, mxFreemxCreateDoubleMatrixmxCreateNumericArraymxCreateString
mxGetPi, mxGetPrmxMalloc, mxReallocmxGetData, mxSetDatamxDestroyArray

Using C Math Library

To add support of MATLAB C Math Library follow these instructions:
1- Add following line at the end of stdafx.h

<P>#include <matlab.h></P>

matlab.h is interface of MATLAB APIs. Add directory of MATLAB interface files (*.h) to Visual Studio (Tools -> Options -> Directories). For example: x:\matlab\extern\include where x is drive letter of matlab path.

2- Add desired libraries to your project (In this example, libmat.lib, libmx.lib, libmatlbmx.lib and libmatlb.lib)

3- Compile your project!

Sample Program

<P>#include "stdafx.h"</P>
<P>
int main(int argc, char* argv[])
{
	double dblArray[]={1, 2, 3, 4, 5, 6, 7, 8, 9}; mxArray *A, *B;

	A=mxCreateDoubleMatrix(3, 3, mxREAL);</P><P></P><P>	//copy array to matrix A</P><P>	memcpy(mxGetPr(A), dblArray, 9 * sizeof(double));</P><P> </P><P>	A=mlfMTimes(A, A);   //A=A.^2;</P><P>	mlfPrintMatrix(A);

	//Creating Magic Matrix</P><P>	B=mlfMagic(mlfScalar(3)); //Magic matrix of order 3 mlfPrintMatrix(B); mxDestroyArray(A); mxDestroyArray(B);

	return 0;
} </P>

Requirements

1- MATLAB v5.0 or higher

2- MATLAB C Math Library Toolbox

3- Knowledge of MATLAB programming!

References

1- MATLAB C Math Library (Mathworks)

2- C Math Library Reference (Mathworks)

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


Written By
CEO Solaris Electronics LLC
United Arab Emirates United Arab Emirates
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 Acquisition 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 competition, my articles are:


You can see list of my articles, by clicking here


Comments and Discussions

 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 19:51
professionalManoj Kumar Choubey26-Feb-12 19:51 
GeneralMxarray to double or int Pin
golnazbaghdadi2-Mar-11 12:13
golnazbaghdadi2-Mar-11 12:13 
Generalusing matlab in c++ Pin
s_mahdavi3-Nov-09 7:24
s_mahdavi3-Nov-09 7:24 
QuestionWhere can I find matlab.h? Pin
Member 443275510-Aug-09 21:13
Member 443275510-Aug-09 21:13 
QuestionObject and UDP combination problem Pin
vaibhav_gandhi15-Jan-09 6:33
vaibhav_gandhi15-Jan-09 6:33 
General#include <matlab.h></matlab.h> Pin
BerakiRuth27-Oct-08 11:08
BerakiRuth27-Oct-08 11:08 
Generalconvert c file to mfile Pin
Member 399935931-May-08 13:09
Member 399935931-May-08 13:09 
Generalhelp! Pin
sanfrea28-May-08 1:12
sanfrea28-May-08 1:12 
Generalplz give me quick reply Pin
uday divekar7-May-08 0:53
uday divekar7-May-08 0:53 
GeneralAmazing problem Pin
smzhaq18-Jul-07 0:15
smzhaq18-Jul-07 0:15 
GeneralCygwin Pin
molakey22-Jun-07 0:51
molakey22-Jun-07 0:51 
GeneralTesting the demo Pin
molakey19-Jun-07 1:43
molakey19-Jun-07 1:43 
GeneralCannot find Matlab.h Pin
molakey19-Jun-07 1:05
molakey19-Jun-07 1:05 
GeneralUsing Matlab C functions from cygwin and Linux Pin
molakey19-Jun-07 0:42
molakey19-Jun-07 0:42 
QuestionMATLAB Compiler include the Matlab C Math Library, but how to use it? Pin
patiobarbecue13-Jun-07 9:06
patiobarbecue13-Jun-07 9:06 
GeneralC to Matlab convertor Pin
famot30-May-07 1:19
famot30-May-07 1:19 
GeneralRe: C to Matlab convertor Pin
karunakaran g n23-Apr-08 0:00
karunakaran g n23-Apr-08 0:00 
QuestionCalling a Matlab function from VB Pin
sumaap22-Feb-07 0:22
sumaap22-Feb-07 0:22 
AnswerRe: Calling a Matlab function from VB Pin
Abbas_Riazi23-Feb-07 8:42
professionalAbbas_Riazi23-Feb-07 8:42 
Questionplease help me for god sake Pin
melika_13601-Feb-07 4:36
melika_13601-Feb-07 4:36 
Questionmatlab help??? Pin
ersincakir4-Jan-07 15:26
ersincakir4-Jan-07 15:26 
Generalusing MATLAB graphics from vc++ Pin
Sajjad Haider14-Nov-06 2:28
Sajjad Haider14-Nov-06 2:28 
GeneralRe: using MATLAB graphics from vc++ Pin
Abbas_Riazi14-Nov-06 3:48
professionalAbbas_Riazi14-Nov-06 3:48 
Questionmx GetPr Pin
barbu8127-Oct-06 4:49
barbu8127-Oct-06 4:49 
GeneralRe: mx GetPr Pin
satish2deee14-Apr-08 20:04
satish2deee14-Apr-08 20:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.