plotting a discrete signal that starts from -2
조회 수: 1 (최근 30일)
이전 댓글 표시
x=[1,-2,4,6,-5,8,10];
stem(x);
i want to plot x , but x(0)=-5.
댓글 수: 0
채택된 답변
Adam
2015년 9월 16일
편집: Adam
2015년 9월 16일
If you don't want just default x-axis values of 1 upto the length of the array you need to define the values and plot e.g.
stem( x, y )
where y would normally be what you have called x and x would be e.g.
x = -4:2
y = [1,-2,4,6,-5,8,10];
I guess if you want x = 0 at y = -5.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Stem Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!