如题,想要通过直接读取正弦波的方式验证所生成的wav文件是否正确,但是出来的图不对。Fs = 44100; % 采样频率T = 10; % 时间长度N = Fs*T; % 采样点数f = 500; % 声音频率y = sin(2*pi*f*T*linspace(0,1,N+1));wavwrite(y,Fs,16,'test2.wav');plot(T,y);想知道具体哪里出错了
http://blog.csdn.net/liyuanbhu/article/details/8713474