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!