changing audio frequency to a constant
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
lets say i have an audio that has so many different frequencies, can i modify its frequency to constant and run it at 2000 hz for example?
2 commentaires
Réponse acceptée
Chunru
le 19 Août 2022
load handel.mat
[p, q] = rat(2000/Fs)
y2000 = resample(y, p, q);
whos
2 commentaires
Chunru
le 19 Août 2022
load handel.mat % load a sample data with Fs
[p, q] = rat(2000/Fs) % find a rational fraction of desired Fs and orighinal Fs
% p, q are integers so that resample can be efficiently implemented
y2000 = resample(y, p, q); % resample the data so that FsNew = p/q*Fs
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Multirate Signal Processing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!