Why can't pcolor show the entire matrix to plot?
Afficher commentaires plus anciens
I am trying to plot a pcolor of the matrix Error3D which is size 300x300.
Error3D is mostly NaNs except for Error3D(:,100), Error3D(:,200) and Error3D(:,300).
When I try to plot the matrix is shows the correct values for Error3D(:,100) and Error3D(:,200) but the values for Error3D(:,300) do not appear.
(please see attached figure)
Here is my code:
load('Error3D.mat')
figure(1)
clf;
hold on;
pcolor(Error3D);
cb = colorbar;
Does anyone know how to fix this issue and make the values of Error3D(:,300) visible on my plot?
Thank you
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 18 Août 2021
pcolor() does not show the values as little square pixels like the imaging functions (imshow(), imagesc(), and image()) do.
m = randi(255, 3, 3); % Make 3x3 matrix
pcolor(m)
shading 'flat';

Basically it's because it's not the center of the little square that has the value, it's the edge of the square that has the value. Then it makes a plane tilted to the other edge with the colors changing along the way. However if you say shading flat, it doesn't change the color, it basically makes the square flat, not tilted, and so the color will be the color of one of the edges (I'm not sure which edge it uses to decide on the color).
So you can see from the above display of a 3x3 matrix, there are 3 edges but only 2 tiles/squares. For this annoying reason, I don't use pcolor() and use imshow() instead. You also might want to consider that if you just simply want to display a matrix. You can still apply a colormap if you want, and one of your own choosing instead of the one pcolor chooses for you, by calling colormap().
3 commentaires
A LL
le 18 Août 2021
Image Analyst
le 19 Août 2021
Unfortunately your array is virtually all NaN's so there's virtually nothing to display. But if it weren't this is how to display a gray scale image:
% fileName = 'Error3D.mat'
% s = load(fileName)
% grayImage = s.Error3D;
grayImage = imread('cameraman.tif');
[rows, columns, numberOfColorChannels] = size(grayImage)
% Unfortunately the array is virtualyl all NaNs.
imshow(grayImage);
subplot(2, 1, 1);
cmap = hsv(256);
imshow(grayImage, 'Colormap', cmap);
axis('on', 'image');
colorbar;

For a surface plot, see attached demo.

A LL
le 19 Août 2021
Catégories
En savoir plus sur Color and Styling dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

