Plot sine wave with bandwidth
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I want to create a sine wave with a given bandwidth, a plot similar to this,
Say my frequency is 20Hz, amplitude is 20 and bandwidth is 4.
0 comentarios
Respuestas (1)
Image Analyst
el 2 de Dic. de 2017
How about just using the formula for sine:
x = linspace(......
y = 20 * sin(2*pi*20*x);
2 comentarios
Image Analyst
el 2 de Dic. de 2017
A sine wave does not have a bandwidth. The bandwidth is zero because it's a single frequency. To get something with a bandwidth that's not zero, you'd have to have something different than a pure sine wave.
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!