Conditional function creating with @ handle
Show older comments
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
Accepted Answer
More Answers (1)
Walter Roberson
on 15 Feb 2019
2 votes
@(xx,yy) (xx+yy).*(xx*yy>0) + (xx-yy).*(xx*yy<0)
note that this will fail if xx or yy are infinite.
3 Comments
Ashok Das
on 15 Feb 2019
Stephen23
on 15 Feb 2019
+1 general solution
Walter Roberson
on 15 Feb 2019
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.)
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!