3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3191
|
3 ## This program is free software; you can redistribute it and/or modify |
|
4 ## it under the terms of the GNU General Public License as published by |
|
5 ## the Free Software Foundation; either version 2, or (at your option) |
|
6 ## any later version. |
3426
|
7 ## |
3191
|
8 ## This program is distributed in the hope that it will be useful, but |
|
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
11 ## General Public License for more details. |
|
12 ## |
3191
|
13 ## You should have received a copy of the GNU General Public License |
|
14 ## along with this file. If not, write to the Free Software Foundation, |
|
15 ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
16 |
3449
|
17 ## -*- texinfo -*- |
|
18 ## @deftypefn {Function File} {} dmult (@var{a}, @var{b}) |
|
19 ## If @var{a} is a vector of length @code{rows (@var{b})}, return |
|
20 ## @code{diag (@var{a}) * @var{b}} (but computed much more efficiently). |
|
21 ## @end deftypefn |
3426
|
22 |
3458
|
23 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
24 ## Description: Rescale the rows of a matrix |
3426
|
25 |
3191
|
26 function M = dmult (a, B) |
3426
|
27 |
3191
|
28 if (nargin != 2) |
|
29 usage ("dmult (a, B)"); |
|
30 endif |
3426
|
31 |
3191
|
32 s = size (a); |
|
33 if ((min (s) > 1) || (max (s) != rows (B))) |
3458
|
34 error ("dmult: a must be a vector of length rows (B)"); |
3191
|
35 endif |
3426
|
36 |
3191
|
37 M = (reshape (a, max (s), 1) * ones (1, columns (B))) .* B; |
3426
|
38 |
3191
|
39 endfunction |