Plotting matrix coordinates with indices?

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

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

댓글을 달려면 로그인하십시오.

답변 (1개)

Evan
Evan 2013년 7월 17일
편집: Evan 2013년 7월 17일

0 개 추천

If I understand correctly, I think imagesc would work:
M = eye(50); %example matrix
imagesc(M)

카테고리

도움말 센터File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

태그

질문:

2013년 7월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by