Recursively build function handle and then solve
Show older comments
Hello,
I need to build a function handle of n functions such as:
num_desired_functions=n
for i=1:n
fun{i}=@X some function of X(1)...X(n)
end
Now, I need to convert this cell array to a function handle of n functions that I will solve simultaneously with fsolve or lsqnonlin. Any ideas?
Answers (1)
Walter Roberson
on 12 Jun 2020
F = @(x) cellfun(@(f) f(x), fun) ;
Categories
Find more on Systems of Nonlinear Equations 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!