Azzera filtri
Azzera filtri

how matrix dimention reduce

1 visualizzazione (ultimi 30 giorni)
ahmad karim
ahmad karim il 11 Ott 2016
Commentato: ahmad karim il 13 Ott 2016
Hello, how can i reduce the dimentions on matrix assum i have 39200*100 how i can reduce it to 392*50 ? or i have one vector assume 39200*1 how can i reduce it to 500*1 Regards,

Risposte (1)

Image Analyst
Image Analyst il 11 Ott 2016
Try imresize
smallImage = imresize(largeImage, [392, 50]);
or
smallVector = imresize(yourVector, [500, 1]);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by