3
我有以下代碼:如何定義分段函數沒有「類型錯誤:無法確定真值」
l = 2
h = 1
p = 2
q = -2
x = Symbol('x')
f = Piecewise ((0, x < 0),
(p, 0 <= x <= l/3),
(h/l * x - h, l/3 < x < 2*l/3),
(q, 2*l/3 <= x <= l),
(0, x > l)
)
導致到錯誤:
TypeError: cannot determine truth value of Relational
什麼是正確的方法定義這個功能?我需要對此表示慰問,因爲我打算稍後將其整合。
謝謝!這有幫助。 – UpmostScarab
SymPy通常不支持鏈式不等式,因爲它們[不可能支持](http://docs.sympy.org/latest/modules/core.html#r72)。你可以使用'And(0
asmeurer