view examples/firstmexdemo.c @ 12311:9fa77a1ead19 release-3-4-x

fix list of files in arpack/module.mk
author John W. Eaton <jwe@octave.org>
date Mon, 31 Jan 2011 08:36:06 -0500
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;
}