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!