Implements a 2D Gauss window (with a default sigma of 0.35) for data pretreatment prior to a 2D Fourier transformation.
Constructor | Description |
Full Usage:
GaussWindow2D()
|
|
Instance member | Description |
|
Applies the Gauss window function to the specified matrix m by multiplying each matrix element with a factor. The GaussWindow2D.Sigma value is used to calculate the window.
|
Full Usage:
this.Sigma
|
Gets or sets the sigma value. This value is usually in the range of 0.3 .. 0.4. |
Static member | Description |
|
Applies the Gauss window function to the specified matrix m by multiplying each matrix element with a factor. The default sigma value (GaussWindow2D.DefaultSigma) is used.
|
Full Usage:
GaussWindow2D.Application(m, sigma)
Parameters:
IMatrix<float>
-
The matrix to modify.
sigma : float
-
The sigma value to calculate the window function.
|
Applies the Gauss window function to the specified matrix m by multiplying each matrix element with a factor.
|