mirror of
https://github.com/JefferyLi0903/MMC.git
synced 2025-02-06 10:28:22 +08:00
10 lines
122 B
Matlab
10 lines
122 B
Matlab
function y = loadFile_FM_audio(filename)
|
|
|
|
fid = fopen(filename,'r');
|
|
y=textscan(fid,'%f');
|
|
fclose(fid);
|
|
y=cell2mat(y);
|
|
|
|
|
|
|