Plotting a piecewise returns error

조회 수: 1 (최근 30일)
Braden Kerr
Braden Kerr 2020년 9월 26일
답변: Walter Roberson 2020년 9월 26일
Hello,
Plotting the code below returns the following erro:
syms t
t =[0:0.1:2*pi];
x = 2*sin(t);
%% Plot 1
figure (1)
f_1 = piecewise(t < -1, 1.5*2*sin(t)+1.5, -1 < t < 1, 0,t>1, 1.5*2*sin(t)-1.5);
plot(f_1, t);
Undefined function 'piecewise' for input arguments of type 'double'.
Please help, thank you

답변 (1개)

Walter Roberson
Walter Roberson 2020년 9월 26일
t =[0:0.1:2*pi];
delete that line
plot(f_1, t);
instead
fplot(f_1, [0, 2*pi])

카테고리

Help CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by