フィルターのクリア

How can I increase the size of data points in a discrete plot

4 ビュー (過去 30 日間)
Stian G
Stian G 2012 年 12 月 20 日
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/

採用された回答

Jonathan Sullivan
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 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by