![]() |
minusPURPOSE
Substract a Gauussian and a constant/Gaussian.
SYNOPSIS
function gOut=minus(g,ct)
DESCRIPTION
Substract a Gauussian and a constant/Gaussian. Substracts two Gaussians or a constant from a Gaussian. CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function gOut=minus(g,ct) 0002 % Substract a Gauussian and a constant/Gaussian. 0003 % 0004 % Substracts two Gaussians or a constant from a Gaussian. 0005 0006 gOut=plus(g,-ct); |