필터 지우기
필터 지우기

Conditional function creating with @ handle

조회 수: 29 (최근 30일)
Ashok Das
Ashok Das 2019년 2월 15일
댓글: Walter Roberson 2019년 2월 15일
If I want to make a function f(x,y) = x+y, we do
f= @(x,y) x+y
Now I want to create a function of the form, f(x,y) = x+y if x*y >1 ; x-y if x*y <=1.
How should I create it with a @ handle?
Thanks in advance

채택된 답변

Stephen23
Stephen23 2019년 2월 15일
편집: Stephen23 2019년 2월 15일
Directly for this specific calculation:
>> f = @(x,y) x + y*(1-2*((x*y)<=1));
>> f(1,2)
ans = 3
>> f(2,1)
ans = 3
It works by simply defining the sign here:
(1-2*((x*y)<=1))
and using that sign to multiply with y. The inbuilt sign function cannot be used because it returns 0 when the input is 0.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2019년 2월 15일
@(xx,yy) (xx+yy).*(xx*yy>0) + (xx-yy).*(xx*yy<0)
note that this will fail if xx or yy are infinite.
  댓글 수: 3
Stephen23
Stephen23 2019년 2월 15일
+1 general solution
Walter Roberson
Walter Roberson 2019년 2월 15일
If you have the symbolic toolbox, it is often the case that such things are better rewritten in terms of piecewise()
If you happen to be using integration, then with complicated formula, numeric integration using multiplication by a logical condition can turn out to be much faster than symbolic integration. However, numeric integration is not always sufficiently sensitive to narrow regions, and narrow regions sometimes make a huge difference in integration. For example, numeric integration will almost always get the wrong results if there is a dirac delta in the calculation, unless you happen to drop in a waypoint right at the location of every delta (and integral2 does not permit waypoint specification at all.)

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

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by