Mercurial > hg > octave-max
view examples/addtwomatrices.cc @ 14334:82a3127af11c
maint: merge stable to default to bring in Qhull2012 build fixes.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 02 Feb 2012 09:50:10 -0800 |
parents | 4295d634797d |
children |
line wrap: on
line source
#include <octave/oct.h> DEFUN_DLD (addtwomatrices, args, , "Add A to B") { int nargin = args.length (); if (nargin != 2) print_usage (); else { NDArray A = args(0).array_value (); NDArray B = args(1).array_value (); if (! error_state) return octave_value (A + B); } return octave_value_list (); }