annotate examples/addtwomatrices.cc @ 12583:bb29b58e650c
release-3-4-x
abandon release-3-4-x branch in favor of workflow using stable and default branches and merging stable to default periodically
author |
John W. Eaton <jwe@octave.org> |
date |
Fri, 08 Apr 2011 09:06:04 -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 } |