Borrar filtros
Borrar filtros

Plotting matrix coordinates with indices?

2 visualizaciones (últimos 30 días)
Joshua
Joshua el 17 de Jul. de 2013
If I have a matrix with '0's and '1's, how can i make a 2D plot of points with coordinates corresponding to the cell indices of the '1's?
  1 comentario
Matt Kindig
Matt Kindig el 17 de Jul. de 2013
Are the '0's and '1's actually part of a numeric matrix, or do you mean the actual characters '0' and '1', as part of a char matrix or a cell array? If it is numeric, the spy() function should do what you want.
doc spy

Iniciar sesión para comentar.

Respuestas (1)

Evan
Evan el 17 de Jul. de 2013
Editada: Evan el 17 de Jul. de 2013
If I understand correctly, I think imagesc would work:
M = eye(50); %example matrix
imagesc(M)

Categorías

Más información sobre Discrete Data 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