![]() |
OffsetPURPOSE
Adds a constant to a Gaussian.
SYNOPSIS
function gOut=Offset(g,o)
DESCRIPTION
Adds a constant to a Gaussian. Apply a constnat offset to the Gaussian mean. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function gOut=Offset(g,o) 0002 % Adds a constant to a Gaussian. 0003 % 0004 % Apply a constnat offset to the Gaussian mean. 0005 0006 gOut=Gaussian(g.m+o,g.S); 0007 |