annotate examples/addtwomatrices.cc @ 16651:4e50bd2946d8
ss-3-7-4
snapshot 3.7.4
* configure.ac (OCTAVE_VERSION): Bump to 3.7.4.
author |
John W. Eaton <jwe@octave.org> |
date |
Mon, 13 May 2013 08:07:15 -0400 |
parents |
4295d634797d |
children |
be41c30bcb44 |
rev |
line source |
6572
|
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 } |