How to mark one specific point when plotting
古いコメントを表示
Hi,
Consider the following plot:
x = linspace(0,10)
y = x.^2
plot(x,y,'b+-')
What type of command can I use to mark one specific point on the line, e.g. y(2), with a square size 15?
Cheers,
A MATLAB newbie
採用された回答
その他の回答 (1 件)
Ali Isik
2011 年 10 月 14 日
As I understood you should 'hold on' the plot and plot the colored,squared point on it. The modified code is as follows;
x = linspace(0,10);
y = x.^2;
plot(x,y,'b+-');
hold on;
plot(x(2),y(2),'--rs','LineWidth',2,'MarkerEdgeColor','k','MarkerFaceColor','g','MarkerSize',15);
1 件のコメント
Walter Roberson
2011 年 10 月 14 日
Note: that 15 will be 15 points.
Reminds me about the riddle of St. Ives...
カテゴリ
ヘルプ センター および File Exchange で Stochastic Differential Equation (SDE) Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!