Mercurial > hg > octave-nkf
view examples/code/celldemo.cc @ 20412:b7ee5cefa9d6 stable
Update make_int example to current octave_base_value API (bug #45136)
* make_int.cc (octave_integer::print): Make non-const. Add a newline
for consistency with core library conventions.
author | Mike Miller <mtmiller@octave.org> |
---|---|
date | Mon, 18 May 2015 19:14:41 -0400 |
parents | c8240a60dd01 |
children | 2f8500ca91d3 |
line wrap: on
line source
#include <octave/oct.h> #include <octave/Cell.h> DEFUN_DLD (celldemo, args, , "Cell Demo") { octave_value_list retval; int nargin = args.length (); if (nargin != 1) print_usage (); else { Cell c = args(0).cell_value (); if (! error_state) for (octave_idx_type i = 0; i < c.numel (); i++) { retval(i) = c(i); // using operator syntax //retval(i) = c.elem (i); // using method syntax } } return retval; }