필터 지우기
필터 지우기

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
Benjamin Thompson
Benjamin Thompson 2022년 2월 2일
>> -3 <= -2 < -1
ans =
logical
0
>> (-3 <= -2) & (-2 < -1)
ans =
logical
1

댓글을 달려면 로그인하십시오.

추가 답변 (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