7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2004, 2005, 2006, |
|
2 ## 2007 Kurt Hornik |
3426
|
3 ## |
3922
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3426
|
10 ## |
3922
|
11 ## Octave is distributed in the hope that it will be useful, but |
3191
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
14 ## General Public License for more details. |
|
15 ## |
3191
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3191
|
19 |
3449
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} dmult (@var{a}, @var{b}) |
|
22 ## If @var{a} is a vector of length @code{rows (@var{b})}, return |
|
23 ## @code{diag (@var{a}) * @var{b}} (but computed much more efficiently). |
|
24 ## @end deftypefn |
3426
|
25 |
5428
|
26 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3458
|
27 ## Description: Rescale the rows of a matrix |
3426
|
28 |
3191
|
29 function M = dmult (a, B) |
3426
|
30 |
3191
|
31 if (nargin != 2) |
6046
|
32 print_usage (); |
3191
|
33 endif |
4890
|
34 if (! isvector (a)) |
3458
|
35 error ("dmult: a must be a vector of length rows (B)"); |
3191
|
36 endif |
4890
|
37 a = a(:); |
|
38 sb = size (B); |
|
39 sb(1) = 1; |
|
40 M = repmat (a(:), sb) .* B; |
3191
|
41 endfunction |