How do I incorporate meaningful colorbar/colormap in a 2D plot; Having a matrix size [83,25000]

36 vues (au cours des 30 derniers jours)
I've a matrix to plot as row vs. column. I've done with the following scripts:
yy = rand(83,25000) ;
x = 1:size(yy,1) ;
figure
hold on
for i = 1:size(yy,2)
plot(x,yy(:,i),'.')
end
colorbar
How can I insert a meaningful colorbar? Otherwise, any other ways to plot the matrix with colorbars? Can anybody suggest me. Any suggestion/help is appreciated. Thanks

Réponse acceptée

KSSV
KSSV le 18 Mai 2021
yy = rand(83,25000) ;
x = 1:size(yy,1) ;
y = 1:size(yy,2) ;
pcolor(x,y,yy') ;
shading interp
colorbar
  8 commentaires
SA
SA le 18 Mai 2021
With this plot, it is unclear to observe the contribution of x-axis points to the y-axis? I want to check the contribution of every point on axis corresponding to the y-axis (maybe dots with colorbar suit well, but I can not do dots with colorbar). Any help is appreciated.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Blue dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by