view examples/myfeval.c @ 17009:adf06e03fbdd

Enable/disable editor actions based on available editor windows * libgui/src/m-editor/file-editor.h, libgui/src/m-editor/file-editor.cc (class file_editor): Added remove_bookmark, close_all and close_others actions as class variables. (file_editor::check_actions): New functions. (file_editor::add_file_editor_tab): call check_actions. (file_editor::construct): call check_actions, use new class vars where added. (file_editor::handle_tab_remove_request): call check_actions.
author John Donoghue <john.donoghue@ieee.org>
date Thu, 18 Jul 2013 14:30:31 -0400
parents be41c30bcb44
children 224e76250443
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray* plhs[],
             int nrhs, const mxArray* prhs[])
{
  char *str;

  mexPrintf ("Hello, World!\n");

  mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs);

  if (nrhs < 1 || ! mxIsString (prhs[0])) 
    mexErrMsgTxt ("ARG1 must be a function name");

  str = mxArrayToString (prhs[0]);

  mexPrintf ("I'm going to call the function %s\n", str);

  mexCallMATLAB (nlhs, plhs, nrhs-1, (mxArray*)prhs+1, str);

  mxFree (str);
}