Why Does This Definition of a Piecewise Function Produce a Warning Message?

1 次查看(过去 30 天)
MATLAB issues a warning when defining the below piecewise function
syms y(x); y(x) = piecewise(x<1, x+1, 1<=x<2, x-1);
But when I write
y(x) = piecewise(x<1, x+1, (1<=x) & (x<2), x-1);
the warning message disappears. Could someone point to an example where those two ways of defining a piecewise function produce different results? It seems here that they give identical results.

采纳的回答

Benjamin Thompson
Benjamin Thompson 2022-1-31
This is just a warning about good programming syntax. Good programming style is to never leave order of operations in doubt, and add parenthesis where needed to clarify order of operations. While a <= b <= c is good mathematical notation, it may no be clear to a compiler or interpreter how the expression must be evaluated.
  3 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by