how to increase dot size?

조회 수: 2 (최근 30일)
bsd
bsd 2011년 9월 25일
Hai,
I have drawn two intersecting lines. The point of intersection of these two lines is a dot. I need to increase this dot size, of the intersection. How could I do this?
BSD
  댓글 수: 1
Harry MacDowel
Harry MacDowel 2011년 9월 25일
dot size?? Do you mean the image resolution??

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

채택된 답변

Wayne King
Wayne King 2011년 9월 25일
You can always plot a symbol at the point of intersection
x = -10:10;
y = x;
y1 = -x;
plot(x,y,x,y1,'b');
hold on;
h = plot(0,0,'ko','MarkerfaceColor',[0 0 0]);
If you really want to make the size bigger than the default, use the MarkerSize property.
Wayne

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by