how to write u= exp(1/((x-x_0)(x-x_1))) for x_0<x<x_1 using '@(x) function' in matlab?

2 次查看(过去 30 天)
u =@(x) vif(x>x0&x<x1,exp(1./((x-x0).*(x-x1))),0)
I need a function that can work with the @(x).

采纳的回答

Walter Roberson
Walter Roberson 2019-11-7
vif = @(condition, when_true, when_false) condition .* when_true + (~condition) .* when_false;
Note: this will not work if infinity is produced by the unselected side . For example, vif(x > 0, 1./x, 1) will not work for x = 0: even though the condition x>0 is not true for x=0, the 1./x would still be evaluated, giving inf, and when that was multipled by the 0 (false) of the condition x>0 that would be 0*inf which is nan.
If you need code that is able to handle the case where the expression might give infinity where the condition is not selected, then you will need a true function instead of an anonymous function. (Or you will need some obscure and ugly hacks involving subsexpr() and subsasgn() and multiple helper anonymous functions.)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by