annotate examples/addtwomatrices.cc @ 12847:619c1895e3e0
codesprint: Add tests for swapbytes.m
* swapbytes.m: Add 1 test and 2 input validation checks.
author |
Rik <octave@nomad.inbox5.com> |
date |
Sat, 16 Jul 2011 15:31:26 -0700 |
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 } |