~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to examples/myfeval.c

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
Copyright (C) 2006, 2007 John W. Eaton
 
4
 
 
5
This file is part of Octave.
 
6
 
 
7
Octave is free software; you can redistribute it and/or 
 
8
modify it under the terms of the GNU General Public License 
 
9
as published by the Free Software Foundation; either
 
10
version 3  of the License, or (at your option) any later 
 
11
version.
 
12
 
 
13
Octave is distributed in the hope that it will be useful, 
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty
 
15
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
 
16
See the GNU General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU General Public 
 
19
License along with Octave; see the file COPYING.  If not,
 
20
see <http://www.gnu.org/licenses/>.
 
21
 
 
22
*/
 
23
 
 
24
#include "mex.h"
 
25
 
 
26
void
 
27
mexFunction (int nlhs, mxArray* plhs[], int nrhs, 
 
28
             const mxArray* prhs[])
 
29
{
 
30
  char *str;
 
31
 
 
32
  mexPrintf ("Hello, World!\n");
 
33
 
 
34
  mexPrintf ("I have %d inputs and %d outputs\n", nrhs,
 
35
             nlhs);
 
36
 
 
37
  if (nrhs < 1 || ! mxIsString (prhs[0])) 
 
38
    mexErrMsgTxt ("function name expected");
 
39
 
 
40
  str = mxArrayToString (prhs[0]);
 
41
 
 
42
  mexPrintf ("I'm going to call the function %s\n", str);
 
43
 
 
44
  mexCallMATLAB (nlhs, plhs, nrhs-1, prhs+1, str);
 
45
 
 
46
  mxFree (str);
 
47
}