Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Pitch Shifting in Matlab

Status
Not open for further replies.

Alexiss

Newbie level 3
Joined
Jan 24, 2013
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,298
Hello there,
Can anyone please explain how I can pitch shift and audio file in Matlab?
I think I need to take the signal to frequency domain and shift it. Any suggestions?
 

You must re-sample the data at a new rate. To create each new data value, you must interpolate a value between the two existing data before and after.

Example... You have two seconds of audio. At 44.1 kHz this is 88,200 data.

You want to raise the pitch 2 percent. You will end up with 86436 data (or 98 percent of the amount of your initial data).

Your new data #1 is the same value as the initial data #1.
To obtain new data value #2, take the value which is 98% of the way from old data #1 to data #2.

To obtain new data value #3, take the value which is 96% of the way from old #2 to #3.

Each step the proportion is 2 points less.

After you do this 97 times you are ready for new data point #98. Then you take old data #100.

Etc.

To lower the pitch means you will gain data points. This is a trickier operation.

If things get too unwieldy, then it might be simpler to keep track of how much percent of the way a new data point is through the file. Multiply this by the number of old data points. This will tell you which of the old data points, before and after, to look at. You'll need to keep track of fractional distances...
and now I realize this is getting beyond my ability to explain the steps involved.

Hope this helps.
 

Thank you for the explanation but I think it should be easier than that because I'm a new Matlab user and have no idea what your explanation means :)
Do you know, what function can be used to shift frequency in Matlab?
I appreciate your help. Thanks.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top