How to find the Sampling Frequency?

I have imported a sound file into Matlab using [sound,fs]=audioread('....')
I need to find the sampling frequency. I think that is fs, however when I import a different sound, my fs value does not change? Is there a difference between sampling rate and sampling frequency, and if there is how do I find the sampling frequency from the audiofile imported?

1 Comment

Sampling frequency is the inverse of sampling rate. You can also relate this to the physics relation between period and frequency of a wave. According to physics, the relation between period (the time taking for a wave to complete a cycle) and frequency is {frequency = 1/period}.

Sign in to comment.

 Accepted Answer

Ameer Hamza
Ameer Hamza on 9 Oct 2020
Yes, fs is the sampling frequency. Sampling frequency and rate are related to each other: frequency = 1/rate. And it is not strange that two files have the same sampling frequency. Most of the audio signals are recorded at a similar sampling frequency, e.g., 44.1 kHz.

3 Comments

Thank you very much for your answer, that makes sense.
It is just a bit strange as to the fact that they want me to compare the sampling frequencies of the two audio signals, so I did not expect them to be the same. Both files are recorded at 16 kHz, at least that is my fs output.
They may want you to compare the frequency content (discrete Fourier transform) of the signal, which can be calculated using fft() of the signal.
Yes, after some investiagtion I also think so. That is what I will do. Thank you again for your assistance.

Sign in to comment.

More Answers (0)

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Products

Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!