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

39 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

KSSV
KSSV am 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 Kommentare
SA
SA am 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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by