Fs =44100;
toneFreq1 = 8000;
nSeconds = 25;
f1 = sin(linspace(0, nSeconds*toneFreq1*2*pi, round(nSeconds*Fs)));
toneFreq2 = 8100;
nSeconds = 25;
f2 = sin(linspace(0, nSeconds*toneFreq2*2*pi, round(nSeconds*Fs)));
....
toneFreq80 = 15900;
nSeconds = 25;
f80 = sin(linspace(0, nSeconds*toneFreq80*2*pi, round(nSeconds*Fs)));
toneFreq81 = 16000;
nSeconds = 25;
f81 = sin(linspace(0, nSeconds*toneFreq81*2*pi, round(nSeconds*Fs)));
f_12345678910...= [f1+f2+f3+f4+f5+f6+f7+f8+f9+f10...f81]/81;
f_z=[f_12345678910...];
sound(f_z,Fs)
wavwrite(f_z, Fs, 24, '8_16zKHz.wav');
I create a wave file (contain frequency from 8khz to 16khz by using Matlab). Then I play the wave and use the M50 microphone(6cm above the speaker) and a recorder to record the sound(from the speaker). Finally, I use a matlab program to convert the sound into a figure. In this figure, you can see a 8-16khz platform (what I want), but also can see some high frequency component(arrow). I don't know why the high frequency(>16khz) is generated. Is the high frequency signal being generated in the speaker, or is it noise generated by the microphone? Thank you.