Probability visualization with color scale

8 vues (au cours des 30 derniers jours)
Emma Kuttler
Emma Kuttler le 30 Nov 2019
Commenté : Image Analyst le 1 Déc 2019
Hi, I have a 296x296 matrix. Each cell in the matrix represents a probability of occurence, [0,1]. I want to create a grid or heatmap where the color of the square corresponds to the probability of occurence - the darker the cell the greater the probability. I have used histogram bins for this matrix and it didn't really represent the data the way that i wanted. I'd like to have something similar to this below, which was done using color scales in Excel.

Réponse acceptée

Image Analyst
Image Analyst le 30 Nov 2019
imshow(yourMatrix, []);
colormap(hsv(256));
colorbar;
  2 commentaires
Emma Kuttler
Emma Kuttler le 30 Nov 2019
This works! Is there a different way to add the tic marks on the axes? They aren't visible even when I change the size in figure properties.
Image Analyst
Image Analyst le 1 Déc 2019
axis('on', 'image');

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by