Functions handle (product of functions)

1 回表示 (過去 30 日間)
Marcus Vinicius Pereira de Souza
Marcus Vinicius Pereira de Souza 2013 年 3 月 20 日
Dear all, I have the following functions:
X=@(fi) 2*sqrt(5/8)*atan(sqrt(45)*fi.); h=@(fi) 10*fi.^2;
However, I need to calculate the follow function:
f=X*h area= quad(f,0,10)
Can anyone help me? Thanks a lot. Marcus Vinicius
  2 件のコメント
Youssef  Khmou
Youssef Khmou 2013 年 3 月 20 日
i am not sure if we can define function based on functions but as alternative solution take a look at the solution below
Marcus Vinicius Pereira de Souza
Marcus Vinicius Pereira de Souza 2013 年 3 月 20 日
Thanks a lot!! Best wishes, Marcus Vinicius

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

採用された回答

Youssef  Khmou
Youssef Khmou 2013 年 3 月 20 日
hi,
why dont you use one single function handle :
>>G=@(fi) 2*sqrt(5/8)*atan(sqrt(45).*fi)*10.*(fi.^2) % This is X*H
>>I=quad(G,0,10)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics and Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by