How to eliminate points with highest intensity in a color plot?
Show older comments
Hi, I have a matrix that I visualize with a color plot. But there are points with very high intensity that don't allow me to visualize it properly. Do you know how can I eliminate these points?
I visualize the matrix with:
figure,imagesc(C(:,:))
1 Comment
darova
on 16 May 2020
YOu can set color axis limits with caxis
caxis([0 10])
Answers (1)
Mehmed Saad
on 16 May 2020
Instead of removing those points you can change Clim property of imagesc
For example
C = rand(40,40);
C(5,5) = 25;
figure,imagesc(C)

Now change the Clim
set(gca,'Clim',[0 1])

Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!