Subtracting two function handles

I was wondering how I could subtract values from two anonymous functions to yield a new function handle. for example:
f = @sin
g = @cos
and I want to define
h = f - g, such that h = @(sin - cos)

 Akzeptierte Antwort

Matt J
Matt J am 19 Nov. 2012

0 Stimmen

h=@(x) f(x)-g(x);

Weitere Antworten (0)

Kategorien

Gefragt:

Joe
am 19 Nov. 2012

Community Treasure Hunt

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

Start Hunting!

Translated by