how to increase dot size?
2 次查看(过去 30 天)
显示 更早的评论
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
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!