Jagged Sine Wave Results

16 visualizaciones (últimos 30 días)
Dan Sullivan
Dan Sullivan el 19 de Sept. de 2020
Respondida: VBBV el 19 de Sept. de 2020
For my Vibrations class, I was asked to plot a simple system responce seen in the image below, but the plot seems rather jagged. Is there something I am not inputting correctly?

Respuesta aceptada

David Hill
David Hill el 19 de Sept. de 2020
t=0:.001:1;%need smaller increment
theta=.1*sin(20*t+pi/2);
plot(t,theta);

Más respuestas (1)

VBBV
VBBV el 19 de Sept. de 2020
%if true
% code
% end
t = 0:0.005:1;
theta = 0.1*sin((20*t)+(pi/2));
plot(t,theta);

Categorías

Más información sobre Vibration Analysis 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!

Translated by