Subtracting two function handles

43 ビュー (過去 30 日間)
Joe
Joe 2012 年 11 月 19 日
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)

採用された回答

Matt J
Matt J 2012 年 11 月 19 日
h=@(x) f(x)-g(x);
  1 件のコメント
Joe
Joe 2012 年 11 月 19 日
Thank you so much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFunction Creation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by