how matrix dimention reduce

조회 수: 1 (최근 30일)
ahmad karim
ahmad karim 2016년 10월 11일
댓글: ahmad karim 2016년 10월 13일
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,

답변 (1개)

Image Analyst
Image Analyst 2016년 10월 11일
Try imresize
smallImage = imresize(largeImage, [392, 50]);
or
smallVector = imresize(yourVector, [500, 1]);

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by