view examples/firstmexdemo.c @ 14407:73f02881260f stable

doc: Fix wording in NEWS file. * NEWS: Improve wording and correct typo.
author Rik <octave@nomad.inbox5.com>
date Fri, 24 Feb 2012 21:30:10 -0800
parents 6cb30a539481
children
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray *plhs[], int nrhs, 
             const mxArray *prhs[])
{
  mxArray *v = mxCreateDoubleMatrix (1, 1, mxREAL);
  double *data = mxGetPr (v);
  *data = 1.23456789;
  plhs[0] = v;
}