How can i increase the size of * or star in this case ?
16 次查看(过去 30 天)
显示 更早的评论
plot(P(1),P(2),'*r');
i want to increase the size of star(*). how can i ?
0 个评论
采纳的回答
Geoff Hayes
2017-7-10
sufian - just increase the MarkerSize as
plot(P(1), P(2), 'r*', 'MarkerSize', 20)
or replace 20 by whatever value makes sense for your plot.
2 个评论
Walter Roberson
2017-7-10
Yes, you can use any of the valid markers; https://www.mathworks.com/help/matlab/creating_plots/create-line-plot-with-markers.html#bvcbmlz-1
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!