My cos function appears as a straight line instead of as a wave
조회 수: 1(최근 30일)
표시 이전 댓글
%Defining given varibles
t = 0 :.1 :3;
f1 = 130;
f2 = 120;
y1 = cosd(2*pi*f1*t);
y2 = cosd(2*pi*f2*t);
%% Section 2: Processing
%equation given
y = 2 .* cos(2.*pi.*(f1+f2./2).*t) .* cos(2.*pi.*(f1-f2./2).*t); %This is my function for the sound waves, however, it appears as a stright line
채택된 답변
David Hill
2020년 9월 19일
f1 = 130;
f2 = 120;
t=0:.001:3;%need smaller incrementing
y = 2*cos(2*pi*(f1+f2/2)*t).*cos(2*pi*(f1-f2/2)*t);
plot(t,y);
추가 답변(0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!