3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
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 |
3191
|
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 |
3191
|
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 ## |
3191
|
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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
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) |
|
32 usage ("dmult (a, B)"); |
|
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 |