2847
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
2313
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
245
|
19 |
3321
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Mapping Function} {} rem (@var{x}, @var{y}) |
|
22 ## Return the remainder of @code{@var{x} / @var{y}}, computed using the |
|
23 ## expression |
3426
|
24 ## |
3321
|
25 ## @example |
|
26 ## x - y .* fix (x ./ y) |
|
27 ## @end example |
3426
|
28 ## |
3321
|
29 ## An error message is printed if the dimensions of the arguments do not |
|
30 ## agree, or if either of the arguments is complex. |
|
31 ## @end deftypefn |
3407
|
32 ## @seealso{round} |
4
|
33 |
2314
|
34 ## Author: jwe |
|
35 |
2311
|
36 function retval = rem (x, y) |
4
|
37 |
3457
|
38 usage_msg = "rem (x, y)"; |
|
39 |
4
|
40 if (nargin != 2) |
3457
|
41 usage (usage_msg); |
4
|
42 endif |
|
43 |
447
|
44 if (any (size (x) != size (y)) && ! (is_scalar (x) || is_scalar (y))) |
|
45 error ("rem: argument sizes must agree"); |
4
|
46 endif |
|
47 |
2303
|
48 ## Matlab allows complex arguments, but as far as I can tell, that's a |
|
49 ## bunch of hooey. |
4
|
50 |
|
51 if (any (any (imag (x))) || any (any (imag (y)))) |
|
52 error ("rem: complex arguments are not allowed"); |
|
53 endif |
|
54 |
|
55 if (nargin == 2) |
|
56 retval = x - y .* fix (x ./ y); |
|
57 else |
3457
|
58 error (usage_msg); |
4
|
59 endif |
|
60 |
|
61 endfunction |