Plot a simple sinusoid of amplitude

1 次查看(过去 30 天)
Plot a simple sinusoid of amplitude 1 and frequency f=1 for 0<t<1
ie. y= sin(2*pi*f*t)
  2 个评论
Akira Agata
Akira Agata 2017-12-11
Like this?
t = linspace(0,1);
f = 1; % [Hz]
y= sin(2*pi*f*t);
plot(t,y)
Braden Canales
Braden Canales 2020-9-30
Thank you, Akira Agata. I am forever indebted to you.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by