Evaluation of function handler
Show older comments
I have function handler with e.g. 2 variable (F=@(x,y) x+y. If I want to add value to one of variables (e.g. y=2), and I need explicit form of function handle (e.i. F=@(x) x+2). what should I do?
Answers (1)
Andrei Bobrov
on 18 Oct 2019
F = F(x,y)x + y;
FF = @(x)F(x,2);
Categories
Find more on Probability Distributions and Hypothesis Tests 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!