Mercurial > hg > octave-max
view examples/addtwomatrices.cc @ 11103:d4fc294a19e4
include untabify docstring in the manual
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 17 Oct 2010 21:46:59 -0400 |
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 (); }