Mercurial > hg > octave-nkf
comparison examples/addtwomatrices.cc @ 6572:8e7148b84b59
[project @ 2007-04-25 04:13:44 by jwe]
author | jwe |
---|---|
date | Wed, 25 Apr 2007 04:14:49 +0000 |
parents | |
children | 4270ded9ddc6 |
comparison
equal
deleted
inserted
replaced
6571:24d9e0799603 | 6572:8e7148b84b59 |
---|---|
1 #include <octave/oct.h> | |
2 | |
3 DEFUN_DLD (addtwomatrices, args, , "Add A to B") | |
4 { | |
5 int nargin = args.length (); | |
6 if (nargin != 2) | |
7 print_usage (); | |
8 else | |
9 { | |
10 NDArray A = args(0).array_value (); | |
11 NDArray B = args(1).array_value (); | |
12 if (! error_state) | |
13 return octave_value (A + B); | |
14 } | |
15 return octave_value_list (); | |
16 } |