Borrar filtros
Borrar filtros

how matrix dimention reduce

4 visualizaciones (últimos 30 días)
ahmad karim
ahmad karim el 11 de Oct. de 2016
Comentada: ahmad karim el 13 de Oct. de 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,

Respuestas (1)

Image Analyst
Image Analyst el 11 de Oct. de 2016
Try imresize
smallImage = imresize(largeImage, [392, 50]);
or
smallVector = imresize(yourVector, [500, 1]);

Categorías

Más información sobre Point Cloud Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by