Plot points with different symbols

조회 수: 5 (최근 30일)
Emi
Emi 2013년 12월 20일
댓글: Emi 2013년 12월 20일
I have a text file that contains x and y coordinates and one value that determine the "type" of the point.
File looks like this:
41 31 1
16 10 0
3 2 1
20 37 1
10 49 1
27 49 0
In each line (or row), the first value represents x coordinate, the second value represents y coordinate, and last value represents the "type" of the point.
I'd like to plot these points using '*' if it is a point of type 0, and 'O (blank circle)' if it is a point of type 1.
Could anyone help?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 20일
편집: Azzi Abdelmalek 2013년 12월 20일
a=dlmread('file.txt')
x=a(:,1)
y=a(:,2);
ii=a(:,3);
idx=ii==1
scatter(x(idx),y(idx),'*')
hold on
scatter(x(~idx),y(~idx),'o')
  댓글 수: 1
Emi
Emi 2013년 12월 20일
Worked like a charm. Thank you!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by