plot a signal with a "marker"
显示 更早的评论
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?.
回答(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,'-*')
类别
在 帮助中心 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!