How to reconstruct a sound with data in MATLAB?
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all! I have in matlab a vector with different pressures (2501 exactly) for one frequency (1856hz) that have been recorded with a microphone. Thus, I'm asking if I can go back and reconstruct the sound so I can hear it. Someone suggested to me to do it with Soudforge, but I don't know how to pass from matlab to soundforge. Can you help me, please? Thank you !
0 Kommentare
Antworten (5)
Jan
am 20 Jul. 2011
What format do your pressure values have? Assuming they have a range from -N to N (e.g. "max(abs(pressure))")
sound(pressure / N, 1856)
4 Kommentare
Daniel Shub
am 21 Jul. 2011
If the pressure waveform has a large DC offset scaling by N will not work so well,
Jan
am 21 Jul. 2011
@Daniel: Correct. If there is any DC offset, it must be removed. I've associated a offset free signal according to the term 'pressure', which has no DC by definition.
@Lucio: If the sound card have problems, use RESAMPLE to onvert it to a standard frequency like 8000 or 8192Hz.
Vieniava
am 20 Jul. 2011
Try this:
fs=8000;
soundsc( pressure-mean(pressure), fs)
You should know sampling frequency used in data collecting - here I assumed typical 8kHz.
2 Kommentare
Jan
am 21 Jul. 2011
Your pressure data are expected to be the values of the variable called "pressure". Perhaps you forgot to mention the format your pressure data??
You cannot hear the sound "on Matlab", but in the speakers of headphone of your computer. Just try it.
Daniel Shub
am 21 Jul. 2011
It is not totally clear what you are starting with: Assuming x is your pressure waveform and is an array 2501x1 samples and the samples were acquired at a rate of 1856 samples per second. If the sample rate is in fact 1856, then unless your soundcard is connected to a lowpass filter, you will get all sorts of audible aliasing if you present the sound with a sample rate of 1856. The solution is to upsample the pressure waveform and present it at a higher sample rate. To do this you can do:
y = resample(x, round(44.1e3/1856), 1);
to get a signal with a sample rate of round(44.1e3/1856)*1856. To then present the sound with an arbitrary level you can do:
soundsc(y-mean(y), round(44.1e3/1856)*1856);
You need to remove the mean value for the scaling to work properly. Some microphones have large bias voltages and this will swamp the small deviations in pressure/voltage that you want to hear.
To get the actual level you need to know the sensitivity of your microphone, the maximum output voltage of your soundcard, the sensitivity of your transducer (headphones/speakers), and the gain of any amplifiers or attenuators.
3 Kommentare
Daniel Shub
am 21 Jul. 2011
Unless you are studying the Nyquist theorem in your lab, then sampling a 1856 Hz signal at 133 Hz does not make any sense. You need to sample at at least twice the frequency of the highest frequency signal.
Daniel Shub
am 21 Jul. 2011
It appears that the sampling rate is 133 Hz and the signal frequency is 1856 Hz. This means the signal will be aliased to a frequency less than 66.5 Hz. Unless you have a very good transducer (e.g., headphones or speaker), you will not be able to hear this signal. A better approach would be to use the signal to amplitude modulate a higher frequency carrier. Assuming your pressure signal is "x."
fs = round(44.1e3/133)*133;
x = x-mean(x);
x = x./sqrt(sum(x.^2));
x = resample(x, round(44.1e3/133), 1);
soundsc(x.*sin(2*pi*8e3*((0:(length(x)-1))/fs)), fs);
Siehe auch
Kategorien
Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!