How do I merge function handles?

조회 수: 17 (최근 30일)
Riccardo Pinzi
Riccardo Pinzi 2016년 5월 11일
답변: Walter Roberson 2016년 5월 11일
suppose I have 2 function handles to evaluate
for i=1:90
f= @(x)x^3*sin(i)
and
g=@(x)x^2*cos(i)
end
the functions i have are far more complicated. now suppose i want to merge them to obtain f+g, i.e. a single function
@(x)x^3sin(i)+x^2cos(i).
How can i do that without combining the expressions but only using f and g?
thanks for the help

답변 (1개)

Walter Roberson
Walter Roberson 2016년 5월 11일
@(x) f(x) + g(x)
In some cases, you can use
syms x
matlabFunction( f(x) + g(x), 'vars', x)
If there are no captured variables, then you can use string manipulation on char() of the handles.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by