3191
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
|
2 ## |
|
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. |
|
7 ## |
|
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 |
|
11 ## General Public License for more details. |
|
12 ## |
|
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 |
|
17 ## usage: dmult (a, B) |
|
18 ## |
|
19 ## If a is a vector of length rows (B), return diag (a) * B (but |
|
20 ## computed much more efficiently). |
|
21 |
|
22 ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at> |
|
23 ## Description: Rescale the rows of a matrix |
|
24 |
|
25 function M = dmult (a, B) |
|
26 |
|
27 if (nargin != 2) |
|
28 usage ("dmult (a, B)"); |
|
29 endif |
|
30 |
|
31 s = size (a); |
|
32 if ((min (s) > 1) || (max (s) != rows (B))) |
|
33 error ("dmult: a must be a vector of length rows (B)"); |
|
34 endif |
|
35 |
|
36 M = (reshape (a, max (s), 1) * ones (1, columns (B))) .* B; |
|
37 |
|
38 endfunction |