How to generate sinusoidal sine wave using matlab ?

조회 수: 68 (최근 30일)
Sachin Pagar
Sachin Pagar 2020년 10월 31일
댓글: madhan ravi 2020년 10월 31일
I need to plot a sine wave with a frequency of 25 amplitude of 5 time of 0:0.1:1 how do i go about this, thanks

채택된 답변

Sachin Pagar
Sachin Pagar 2020년 10월 31일
T = 0:0.001:1; % your time vector have a very low sampling frequency
Z = 5*sin(25*2*pi*T);
plot(T, Z)
  댓글 수: 1
madhan ravi
madhan ravi 2020년 10월 31일
What is the point of copy pasting the below answer?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 10월 31일
Try this
t = 0:0.001:1; % your time vector have a very low sampling frequency
y = 5*sin(25*2*pi*t);
plot(t, y)

카테고리

Help CenterFile Exchange에서 Signal Generation에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by