how to use a piecewise function with fsolve?

1 次查看(过去 30 天)
I want to use piecewise objective function with fsolve. If i define the objective function using an if statement I get 'Conversion to logical from sym is not possible.'. When I use piecewise built-in function it returns an error when I try convert the objective function to a matlabFunction.
Actually, the objective function consists of 3 functions, for a region i need fsolve to consider only two of the functions. I was thinking of doing this by defining one of the functions as NaN in a certain region. Is this possible?

采纳的回答

Walter Roberson
Walter Roberson 2017-1-28
It is not possible to use piecewise with fsolve. It is possible to use piecewise with vpasolve.
Also I discovered earlier today that if you have a symbolic expression that contains piecewise, that if you use matlabFunction() with the 'file' option then the code written will use 'if' to decide the case and do the appropriate computation. Unfortunately the generated code is not vectorized (which would require logical indexing rather than if), but provided you used the matlabFunction 'vars' option to put all of variables into a single argument, you would be able to use it with fsolve.
  7 个评论
Walter Roberson
Walter Roberson 2018-11-10
Unfortunately no, if you use matlabFunction with 'file' and piecewise() then although it generates appropriate if to handle the piecewise, it still does so assuming the input is a scalar. For example
F = [a, a^2, piecewise(a<0, -(-a)^(1/3), a^(1/3))]
is currently still turned into code that has
if (a < 0.0)
t0 = -(-a).^(1.0./3.0);
else
t0 = a.^(1.0./3.0);
end
F = [a,a.^2,t0];
instead of generating logical indexing or a loop.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by