Plotting discrete piecewise funtion

조회 수: 8 (최근 30일)
Patrick Struszczyk
Patrick Struszczyk 2020년 10월 16일
댓글: Patrick Struszczyk 2020년 10월 16일
I have a piecewise function as follows:
f(t) = 0 for t < 0
t for 0 ≤ t < 1
and e −t+1 for t ≥ 1
I'm attempting to sketch x[k]=f(0.5k) with k being counting numbers.
x2=piecewise(t<0,0,0<=t<1,t,exp(-t+1));
x3=x2.*(2.*k);
subplot (4,1,4)
stem(x3)
title('3b.3')
  댓글 수: 1
Patrick Struszczyk
Patrick Struszczyk 2020년 10월 16일
I keep getting the error :
Error using stem (line 40)
Unable to convert expression into double array.
How can I fix this?

댓글을 달려면 로그인하십시오.

답변 (1개)

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam 2020년 10월 16일
편집: Asad (Mehrzad) Khoddam 2020년 10월 16일
piecewise function is for symbolic toolbox.
You can use:
t=0:0.1:5.0;
f= t.*(t>=0 & t<1 ) + exp(-t+1).*(t>=1);
plot(t,f);

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by