주기 10 ms
최대값 3.6
주파수 100Hz
인 상태로 사인 함수 그래프를 그려보려고 합니다
인터넷에서 찾아보니까
fo = 4; %frequency of the sine wave
Fs = 100; %sampling rate
Ts = 1/Fs; %sampling time interval
t = 0:Ts:1-Ts; %sampling period
n = length(t); %number of samples
y = 2*sin(2*pi*fo*t); %the sine curve
%plot the cosine curve in the time domain
sinePlot = figure;
plot(t,y)
xlabel('time (seconds)')
ylabel('y(t)')
title('Sample Sine Wave')
grid
이런식으로 나오는데, 여기에서 어떤 부분을 손대야 제가 맨 위에 적은 3가지 값이 적용되는질 모르겠어요
다른 수치는 전혀 없었고 저 세 값 뿐이에요
아시는 분은 좀 도와주세요