[data1,fs]=audioread('airplane.mp3');
t=(1:length(data1))/fs;
figure(1);
plot(t,data1);
xlabel('时间');
ylabel('幅度');
补充说明
1.采样率为每秒内的采样点数,所以采样时间=采样点数/采样频率
[data1,fs]=audioread('airplane.mp3');
t=(1:length(data1))/fs;
figure(1);
plot(t,data1);
xlabel('时间');
ylabel('幅度');
补充说明
1.采样率为每秒内的采样点数,所以采样时间=采样点数/采样频率