Amplitude vs Frequency plot

6 visualizaciones (últimos 30 días)
Danielle Wise
Danielle Wise el 3 de Feb. de 2021
Comentada: Igor Arkhandeev el 4 de Feb. de 2021
I have a steady response formula ysteady(t)=18 + 6sin(240*pi*t - 0.120).
I need to write a script that plots the amplitude spectrum (Amplitude [V] vs Frequency [Hz]) using a sample of 64 values sampled at 512 samples/s. The spectrum has a resolution of 8 Hz.
I am very new to MATLAB, please help.
  2 comentarios
darova
darova el 4 de Feb. de 2021
Please show some of your attempts. Start from plot
Igor Arkhandeev
Igor Arkhandeev el 4 de Feb. de 2021
This example is so simple. Try to change it for your target.
t = linspace(0,2*pi,100);
ysteady(1:length(t)) = 18 + 6*sin(240*pi*t - 0.120);
plot(t, ysteady);

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by