Mercurial > hg > octave-nkf
view examples/myhello.c @ 12388:cf9ca0dbc5ee
Delete old legends and fix for legend locations that are 'southest' (followup #32343)
author | David Bateman <dbateman@free.fr> |
---|---|
date | Sun, 06 Feb 2011 15:33:56 +0100 |
parents | 4295d634797d |
children | be41c30bcb44 |
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; }