downsample
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
is there a matlab command that will filter and downsample data?
5 Commenti
Risposta accettata
Honglei Chen
il 18 Nov 2011
There are several possibilities. You can use either upfirdn or design the filter using fdesign.decimator and then filter your signal.
doc upfirdn
doc fdesign.decimator
0 Commenti
Più risposte (1)
Walter Roberson
il 18 Nov 2011
imresize() in the Image Processing Toolbox
2 Commenti
Walter Roberson
il 18 Nov 2011
There isn't any command for it in basic MATLAB. You may be able to construct routines for it out of basic MATLAB, depending on how you want to do your filtering. For example, you could fft2, adjust the frequency matrix, then ifft2() specifying fewer points than the original had.
Vedere anche
Categorie
Scopri di più su Multirate Signal Processing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!