1
vote
2answers
71 views
How do I sample a matrix in MATLAB?
I have a matrix in MATLAB from which I want to sample every other entry:
a =
1 5 9 13
2 6 10 14
3 7 11 15
4 8 12 16
And I want:
result …
3
votes
4answers
126 views
Perceptual Image Downsampling
So here is my problem:
I have an image, that image is large (high resolution) and it needs to be small (much lower resolution).
So I do the naive thing (kill every other pixel) and the result looks …
3
votes
1answer
149 views
Java - downsampling wav audio file
Hi I need to downsample a wav audio file's sample rate from 44.1kHz to 8kHz. I have to do all the work manually with a byte array...it's for academic purposes.
I am currently using 2 classes, Sink …
6
votes
6answers
1k views
Downsampling and applying a lowpass filter to digital audio
I've got a 44Khz audio stream from a CD, represented as an array of 16 bit PCM samples. I'd like to cut it down to an 11KHz stream. How do I do that? From my days of engineering class many years …
