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!