User`s manual
Examples of Calling Engine Functions
4-7
int main()
{
 Engine *ep;
 mxArray *T = NULL, *result = NULL;
 char buffer[BUFSIZE];
 double time[10] = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0,
 8.0, 9.0 };
 /*
 * Start the MATLAB engine locally by executing the string
 * "matlab".
 *
 * To start the session on a remote host, use the name of
 * the host as the string rather than \0.
 *
 * For more complicated cases, use any string with whitespace,
 * and that string will be executed literally to start MATLAB.
 */
 if (!(ep = engOpen("\0"))) {
 fprintf(stderr, "\nCan't start MATLAB engine\n");
 return EXIT_FAILURE;
 }
 /*
 * PART I
 *
 * For the first half of this demonstration, we will send data
 * to MATLAB, analyze the data, and plot the result.
 */
 /* 
 * Create a variable for our data.
 */
 T = mxCreateDoubleMatrix(1, 10, mxREAL);
 mxSetName(T, "T");
 memcpy((void *)mxGetPr(T), (void *)time, sizeof(time));
 /*
 * Place the variable T into the MATLAB workspace.
 */
 engPutArray(ep, T);










