How to display image from 2d matrix?

조회 수: 30 (최근 30일)
Jane
Jane 2021년 9월 11일
답변: KSSV 2021년 9월 11일
I have 200*200 double matrix and I want to see thee image generated.What code snippet should I use?

채택된 답변

KSSV
KSSV 2021년 9월 11일
Let A be your matrix.
figure
imshow(A)
figure
imagesc(A)
figure
pcolor(A) ;
shading interp;
colorbar

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by