3175
|
1 ## Copyright (C) 1998 John W. Eaton |
3426
|
2 ## |
3922
|
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 |
3175
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3175
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3175
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
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. |
3175
|
19 |
3449
|
20 ## -*- texinfo -*- |
4890
|
21 ## @deftypefn {Function File} {} dot (@var{x}, @var{y}, @var{dim}) |
|
22 ## Computes the dot product of two vectors. If @var{x} and @var{y} |
|
23 ## are matrices, calculate the dot-product along the first |
|
24 ## non-singleton dimension. If the optional argument @var{dim} is |
|
25 ## given, calculate the dot-product along this dimension. |
3449
|
26 ## @end deftypefn |
3175
|
27 |
|
28 ## Author: jwe |
|
29 |
4890
|
30 function z = dot (x, y, dim) |
3426
|
31 |
4890
|
32 if (nargin != 2 && nargin != 3) |
|
33 usage ("dot (x, y, dim)"); |
3175
|
34 endif |
|
35 |
4890
|
36 if (nargin < 3) |
|
37 if isvector (x) |
|
38 x = x(:); |
|
39 endif |
|
40 if isvector (y) |
|
41 y = y(:); |
3175
|
42 endif |
4890
|
43 if (size (x) != size (y)) |
|
44 error ("dot: sizes of arguments must match") |
|
45 endif |
|
46 z = sum(x .* y); |
3175
|
47 else |
4890
|
48 if (size (x) != size (y)) |
|
49 error ("dot: sizes of arguments must match") |
|
50 endif |
|
51 z = sum(x .* y, dim); |
3175
|
52 endif |
|
53 |
|
54 endfunction |