plot a signal with a "marker"
10 ビュー (過去 30 日間)
古いコメントを表示
Hi i want to know if i can plot a continuous signal and other signal, but this signal is a point, like a "marker". If this is possible, how i can do that?.
0 件のコメント
回答 (1 件)
Honglei Chen
2012 年 6 月 14 日
I don't know exactly what you mean, but try the following code and see if one of them match your needs.
x = 1:10;
y = 1:10;
stem(x,y)
plot(x,y,'*')
plot(x,y,'-*')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!