WelchWin: Welch (parabolic) window function
Versión 1.0.0.0 (1,36 KB) por
Andrew Davis
The function returns a parabolic window of length n. This is useful for spectral estimation.
WELCHWIN Welch (parabolic) window
Usage:
w = welchwin(n) returns the n-point parabolic window
n: scalar window length
w: column vector of window values
Example:
t = (0:9)';
s = rand(1,10)';
n = length(s);
w = welchwin(n);
s2 = s.*w;
plot(t, s, 'ko', t, s2, 'r-')
legend('original data', 'windowed data')
See also: RECTWIN
Citar como
Andrew Davis (2025). WelchWin: Welch (parabolic) window function (https://www.mathworks.com/matlabcentral/fileexchange/38978-welchwin-welch-parabolic-window-function), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2012a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre AI for Signals en Help Center y MATLAB Answers.
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 |