Mercurial > hg > octave-nkf
annotate examples/celldemo.cc @ 11117:3cbc0d77db48 ss-3-3-53
update version info for snapshot
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 19 Oct 2010 02:25:32 -0400 |
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 } |