source: trunk/src/matlab/rpLib.cc @ 115

Last change on this file since 115 was 115, checked in by mmc, 19 years ago

Updated all copyright notices.

File size: 1.2 KB
RevLine 
[97]1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: Matlab Rappture Library Source
4 *
5 *    libHandle = rpLib(fileName)
6 *
7 * ======================================================================
8 *  AUTHOR:  Derrick Kearney, Purdue University
[115]9 *  Copyright (c) 2004-2005  Purdue Research Foundation
10 *
11 *  See the file "license.terms" for information on usage and
12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
[97]13 * ======================================================================
14 */
15
16#include "RpMatlabInterface.h"
17
18void mexFunction(int nlhs, mxArray *plhs[],
19                 int nrhs, const mxArray *prhs[])
20{
21    char *path;
22    RpLibrary* lib = NULL;
23    int libIndex = 0;
24
25    /* Check for proper number of arguments. */
26    if (nrhs != 1)
27        mexErrMsgTxt("One input required.");
28    else if (nlhs > 1)
29        mexErrMsgTxt("Too many output arguments.");
30
31    path = getStringInput(prhs[0]);
32
33    /* Call the C subroutine. */
34    if (path) {
35        lib = rpLibrary(path);
36    }
37
38    libIndex = storeObject_Lib(lib);
39    /* Set C-style string output_buf to MATLAB mexFunction output*/
40    plhs[0] = mxCreateDoubleScalar(libIndex);
41
42    return;
43}
Note: See TracBrowser for help on using the repository browser.