I have this piecewise function and I have to plot this discrete signal using the stem function. This is what I wrote:
And this is the error I am getting:
What is it that I am doing wrong?

 채택된 답변

Star Strider
Star Strider 2019년 9월 8일

2 개 추천

I prefer the anonymous function approach:
x = @(n) n.*((0<=n) & (n<=8)) + 1*((-4<=n) & (n<=-1));
n = -10:12;
figure
stem(n, x(n))
grid

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

제품

릴리스

R2017a

질문:

2019년 9월 8일

편집:

2019년 9월 8일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by