Azzera filtri
Azzera filtri

Hello, I have a matrix of order 768 X 256. How can I downsample every alternate column. So that, every second column in the matrix is downsampled. So that new matrix will have order 768 X 128?. Kindly help me out.

2 visualizzazioni (ultimi 30 giorni)
If A is of order 768 X 256. I need to downsample every alternate column, i.e. every 2nd column is downsampled. So that new matrix will have order 768 X 128. Kindly help me in this issue.
Thanks, Sai..

Risposta accettata

Rik
Rik il 3 Ott 2018
This works the same, but in reverse from your other question:
data=rand(768,256);%generate data for example
data(:,1:2:end)=[];

Più risposte (1)

Matt J
Matt J il 3 Ott 2018
Modificato: Matt J il 3 Ott 2018
Another way to reduce the data would be by doing 1x2 binning, e.g., using sepblockfun (Download)
data= sepblockfun(data,[1,2],'mean');

Categorie

Scopri di più su Creating and Concatenating Matrices 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!

Translated by