How can I increase the size of data points in a discrete plot
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a figure, created by someone else, to which I need to add one extra set of discrete data points. The added data points, however, are miniscule compared to the ones from the imported .fig file. The code used is:
if true
fig = open('myFig.fig');
hold on
plot(xdata,ydata,'xg');
end
A picture of the resulting plot can be found here (the new data being almost invicible): http://imageshack.us/photo/my-images/534/tempdep.png/
댓글 수: 0
채택된 답변
Jonathan Sullivan
2012년 12월 20일
Try the property MarkerSize.
if true
fig = open('myFig.fig');
hold on
plot(xdata,ydata,'xg','MarkerSize',16);
end
댓글 수: 0
추가 답변 (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!