How to display a matrix as a picture?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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:
Is it possible to do?
0 comentarios
Respuestas (1)
Sandro Lecci
el 14 de Jun. de 2018
Hi,
What about the function imagesc ?
A = [0 1; 2 3];
imagesc(A);
colorbar;
Best,
Ver también
Categorías
Más información sobre Numeric Types 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!