The Guy
The Guy

Reputation: 718

Python Resampling Implementation like Matlab's Signal Toolbox's Resampling Function

The Scipy Resample appears to not use any filters nor use the same method as Matlab Resample.

Any idea on how to match Matlab's resample method in Python? Is there a function already that I have not found?

Thanks in advance for your help!

Upvotes: 1

Views: 1878

Answers (1)

Tian He
Tian He

Reputation: 372

Try scikits.samplerate.

A simple usage is available here.

Upvotes: 1

Related Questions