Mercurial > hg > octave-max
annotate examples/globaldemo.cc @ 11188:4cb1522e4d0f
Use function handle as input to cellfun,
rather than quoted function name or anonymous function wrapper.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 03 Nov 2010 17:20:56 -0700 |
parents | 4295d634797d |
children |
rev | line source |
---|---|
6572 | 1 #include <octave/oct.h> |
2 | |
3 DEFUN_DLD (globaldemo, args, , "Global demo.") | |
4 { | |
5 int nargin = args.length (); | |
6 octave_value retval; | |
7 | |
8 if (nargin != 1) | |
9 print_usage (); | |
10 else | |
11 { | |
12 std::string s = args(0).string_value (); | |
13 if (! error_state) | |
14 { | |
15 octave_value tmp = get_global_value (s, true); | |
16 if (tmp.is_defined ()) | |
17 retval = tmp; | |
18 else | |
19 retval = "Global variable not found"; | |
20 | |
21 set_global_value ("a", 42.0); | |
22 } | |
23 } | |
24 return retval; | |
25 } |