sinewave generation:how generatea sine wave

조회 수: 5 (최근 30일)
Folarin Ojetoro
Folarin Ojetoro 2016년 11월 12일
답변: MD Rasel Basunia 2022년 4월 8일
i want to know how to generate a sine wave

채택된 답변

Daniel kiracofe
Daniel kiracofe 2016년 11월 13일
t=0:0.001:1; freq = 10; signal = sin( freq * 2 * pi * t); plot(t, signal);

추가 답변 (1개)

MD Rasel Basunia
MD Rasel Basunia 2022년 4월 8일
% sinusoidal wave,x(t)=A*sin(2*pi*f*t); % set signal frequency f=10; %sampling frequency with oversampling %factor 50 fs=50*f; % sampling interval or period Ts=1/fs; %suppose you want to plot 6 cycle of sin %wave Number_of_cycle=6;
% time range for sin wave t=0:Ts:Number_of_cycle/f-Ts; % define sinusoidal %Amplitude A=2; x=A*sin(2*pi*f*t); plot(t,x,'k','linewidth', 2);grid on; xlabel('time');ylabel('Amplitude '); legend('sine wave');

카테고리

Help CenterFile Exchange에서 ECG / EKG에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by