listen to a sinusoid
조회 수: 5 (최근 30일)
이전 댓글 표시
i have the following code
Omega1 = pi/3;
phi1 = 0;
t1 = 0:0.01:30;
ct_sinusoid = cos(Omega1*t1+phi1);
plot(t1, ct_sinusoid);
title(['Continuous-Time Sinusoid2 with \Omega0 =',num2str(Omega1) ,'\phi0 =',num2str(phi1)])
I want to listen to the ct_sinusoid. Can someone help me how to achieve this. Thanks!
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 10월 31일
You can use audioplayer(): https://www.mathworks.com/help/matlab/ref/audioplayer.html object to play the sound. However, you will not listen to anything because the frequency is too low.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio and Video Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!