MATLAB: How to use calculated value from first question to calculate in another equation at the same time

MATLAB

Is it possible to insert the calculated data from one equation into another equation at the same time?

Best Answer

f = @(x,y) x+y ;
g = @(f,x,y) f(x,y)*x*y ;
Related Question