undefined function 'piecewise' for input arguments of type 'double'.

4 次查看(过去 30 天)
Trying to run this piecewise function:
x = [-5:0.1:5];
y = piecewise(x <= 1, ((-2.*(x.^2))+9.*x-7), double(x) > 1, ((10.*sqrt(x))+3));
plot (x,y);
but it gives the following error: "Undefined function 'piecewise' for input arguments of type 'double'."
any fixes please?
thanks in aniticipation.

采纳的回答

Torsten
Torsten 2022-10-1
syms x
y = piecewise(x <= 1, ((-2.*(x.^2))+9.*x-7), x > 1, ((10.*sqrt(x))+3));
fplot (x,y,[-5 5])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Assumptions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by