How to visualize a table in a color dot plot?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Joao Paulo
el 13 de Mayo de 2022
Respondida: KSSV
el 13 de Mayo de 2022
Hello!
I have a table with some values:

And I want to display the table in a graph like this:

Basically when the value is 0 nothing happens, when is negative is a blue dot and when is positive is a red dot.
Does anyone know how to do this?
Thanks!
0 comentarios
Respuesta aceptada
KSSV
el 13 de Mayo de 2022
Let A be your matrix.
[m,n] = size(A) ;
[X,Y] = meshgrid(1:m,1:n) ;
figure
hold on
plot(X(A<0),Y(A<0),'.b')
plot(X(A>0),Y(A>0),'.r')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!