How to display a matrix as a picture?
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to save a matrix in the matlab as an image to use in microsoft word. Let's say
A= [0 1; 2 3]
I want to save this (or display it) as a picture like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/191242/image.jpeg)
Is it possible to do?
댓글 수: 0
답변 (1개)
Sandro Lecci
2018년 6월 14일
Hi,
What about the function imagesc ?
A = [0 1; 2 3];
imagesc(A);
colorbar;
Best,
참고 항목
카테고리
Help Center 및 File Exchange에서 Numeric Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!