Mercurial > hg > octave-nkf
annotate examples/celldemo.cc @ 14610:41d7e23f5734
Document rand's seed difference from Matlab
* rand.cc (Frand): Mention in docstring that seed is randomly chosen,
not always fixed at startup. Give hint on how to obtain Matlab-like
behaviour.
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Tue, 08 May 2012 23:23:02 -0400 |
parents | db1f49eaba6b |
children | be41c30bcb44 |
rev | line source |
---|---|
6572 | 1 #include <octave/oct.h> |
2 #include <octave/Cell.h> | |
3 | |
12174 | 4 DEFUN_DLD (celldemo, args, , "Cell Demo") |
6572 | 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 } |