How to visualize a table in a color dot plot?

6 visualizaciones (últimos 30 días)
Joao Paulo
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!

Respuesta aceptada

KSSV
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')

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by