Azzera filtri
Azzera filtri

How to put a function in another function?

4 visualizzazioni (ultimi 30 giorni)
For instance, if there are two functions which are with respect to x: f(x) = x^2 and g(x) = 4*x, I want to make another function using them: h(x) = (f(x)+5*g(x))/(2*f(x)*g(x))
But,
f = @(x) x^2;
g = @(x) 4*x;
h = @(x) (f+5*g)/(2*f*g);
doesn't work.
Is there any way to do this?

Risposta accettata

Geoff Hayes
Geoff Hayes il 21 Mar 2016
Yusuke - if x is the input parameter to your function h, then you must pass this into f and g as well. So instead of
h = @(x) (f+5*g)/(2*f*g);
you would write
h = @(x) (f(x)+5*g(x))/(2*f(x)*g(x));
Try the above and see what happens!

Più risposte (1)

the cyclist
the cyclist il 21 Mar 2016
You have to supply the function arguments:
h = @(x) (f(x)+5*g(x))/(2*f(x)*g(x));

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by