Mercurial > hg > octave-nkf
annotate examples/celldemo.cc @ 9804:6fcc4179c178
configure.ac: remove check for ftgl
author | Shai Ayal <shaiay@users.sourceforge.net> |
---|---|
date | Wed, 11 Nov 2009 13:17:34 -0500 |
parents | 4295d634797d |
children | db1f49eaba6b |
rev | line source |
---|---|
6572 | 1 #include <octave/oct.h> |
2 #include <octave/Cell.h> | |
3 | |
4 DEFUN_DLD (celldemo, args, , "Cell Demo") | |
5 { | |
6 octave_value_list retval; | |
7 int nargin = args.length (); | |
8 | |
9 if (nargin != 1) | |
10 print_usage (); | |
11 else | |
12 { | |
13 Cell c = args (0).cell_value (); | |
14 if (! error_state) | |
15 for (octave_idx_type i = 0; i < c.nelem (); i++) | |
16 retval(i) = c.elem (i); | |
17 } | |
9053
4295d634797d
remove copyright notices from example files
John W. Eaton <jwe@octave.org>
parents:
7081
diff
changeset
|
18 |
6572 | 19 return retval; |
20 } |