How to find the start and end coordinates of main-lobe of rectangular window spectrum.
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
The rectangular window spectrum is found like
M=66;
r=rectwin(M);
n=512;
r_fft=fft(r,n);
r_fft2=fftshift(r_fft);
r_fftdB=20*log10(abs(r_fft2));
figure
plot(1:n,r_fftdB)
title(M)
The plotted spectrum is
The spectrum is symmetrical about the peak of main-lobe. The starting of main-lobe is at coordinate 249. The ending of the main-lobe is at 265, The peak of main-lobe is at 257.
How to find the values of staring and ending coordinates of main-lobe (249,265 respectively)?
2 comentarios
Respuestas (1)
Palguna Gopireddy
el 28 de Dic. de 2022
Editada: Palguna Gopireddy
el 28 de Dic. de 2022
0 comentarios
Ver también
Categorías
Más información sobre Pulsed Waveforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!