Filter löschen
Filter löschen

wav read in matlab

1 Ansicht (letzte 30 Tage)
sam aldoss
sam aldoss am 2 Okt. 2018
Beantwortet: Walter Roberson am 2 Okt. 2018
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')

Antworten (1)

Walter Roberson
Walter Roberson am 2 Okt. 2018
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

Kategorien

Mehr zu Periodic Waveform Generation finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by