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

15 次查看(过去 30 天)
I am trying to run the following piecewise function:
x = @(y) piecewise([y>2, 1], 0)
However, whenever I try to run it, I get the following error: "undefined function 'piecewise' for input arguments of type 'double'."
I definitely have the Symbolic Math toolbox installed and am not sure why this is happening.

回答(1 个)

Thiago Henrique Gomes Lobato
piecewise defines a symbolic function, so you can't just give a double as input for the anonymous function. If you however explicitely make the substitution it will work
syms y
x = @(y) piecewise(y>2,1, 0);
subs(x,[1,2,3])
ans =
[ 0, 0, 1]
Although unless you really need it to be symbolic I would strongely recommend to remain working with numerical values:
x = @(y) double(y>2);
x([1,2,3])
ans =
0 0 1

类别

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

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by