Anonymous Functions in another anonymous function

19 visualizaciones (últimos 30 días)
Andy Tran
Andy Tran el 6 de Jun. de 2020
Respondida: madhan ravi el 6 de Jun. de 2020
I'm working with function handle and i want to generate a function by combining others functions like below:
f1 = @(x) x(1)/(1+x(2));
f2 = @(x) x(2)/(1+x(1));
f3 = @(x) f1 + f2
Of course it doesn't work, can somebody show me the way how to do it?
Many thanks!

Respuesta aceptada

madhan ravi
madhan ravi el 6 de Jun. de 2020
f3 = @(x) f1(x) + f2(x)

Más respuestas (0)

Categorías

Más información sobre Function Handles en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by