The Octave Forge package repository is no longer actively maintained. Please find Octave Packages at https://packages.octave.org.

Navigation

Operators and Keywords

Function List:

C++ API

Function File: gausswin (m)
Function File: gausswin (m, a)

Return the filter coefficients of a Gaussian window of length m. The width of the window is inversely proportional to the parameter a. Use larger a for a narrow window. Use larger m for a smoother curve.

w = exp ( -(a*x)^2/2 )

for x = linspace(-(m-1)/m, (m-1)/m, m)

Package: signal