mtimes Product of a Gaussian and a constant/Gaussian.
SOURCE CODE
0001 function gOut=Scale(g,a)
0002 % Product of a Gaussian and a constant (matrix).
0003 %
0004 % Return the Gaussian resulting from applying the linear mapping A*g.
0005
0006 gOut=Gaussian(a*g.m,a*g.S*a');
0007