Operations with function handles / anonymous functions
1 次查看(过去 30 天)
显示 更早的评论
I am trying to find the proper way to add two functions. These are expressed as function handles because I need to use these functions as an fmincon parameter.
Example:
function1 = @(x) x(1)^2+5
function 2 = @(x) 2*x(2)
Sum would be: @(x) x(1)^2 + 2*x(2) + 5
I am confused by the documentation surrounding these types. I know there probably is a way to sum these handles or some other workaround, but I do not see it.
Thanks in advance.
0 个评论
采纳的回答
the cyclist
2021-5-25
Is this what you want?
function1 = @(x) x(1)^2+5
function2 = @(x) 2*x(2)
function12 = @(x) function1(x) + function2(x)
更多回答(1 个)
Fangjun Jiang
2021-5-25
function1 = @(x) x(1)^2+5
function2 = @(x) 2*x(2)
function3=@(x) function1(x)+function2(x)
function1([1 2])
function2([1 2])
function3([1 2])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!