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

37 visualizaciones (últimos 30 días)
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

Respuesta aceptada

KSSV
KSSV el 18 de Mayo de 2021
yy = rand(83,25000) ;
x = 1:size(yy,1) ;
y = 1:size(yy,2) ;
pcolor(x,y,yy') ;
shading interp
colorbar
  8 comentarios
SA
SA el 18 de Mayo de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Blue en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by