필터 지우기
필터 지우기

wav read in matlab

조회 수: 1 (최근 30일)
sam aldoss
sam aldoss 2018년 10월 2일
답변: Walter Roberson 2018년 10월 2일
hello
am trying to get data from wavs file and safe as data or txt file in matlab to be analysis
I did this to read the wav
[y,Fs] = audioread('sample2.wav')

답변 (1개)

Walter Roberson
Walter Roberson 2018년 10월 2일
After that code, the variable y would be the data. You can use save() to save y as a .mat or text file, or you can use csvwrite() or dlmwrite() or xlswrite() or writetable() or fopen/fprintf/fclose . Probably the easiest of those would be
save sample2.txt y -ascii -double

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by