Definite integral of two arrays with 400 values each.

3 ビュー (過去 30 日間)
Martin Fertal
Martin Fertal 2022 年 5 月 7 日
コメント済み: Martin Fertal 2022 年 5 月 8 日
Hello
I have to calculate S/P ratio by this formula. The problem is that i have no idea how to itegrate it. S, V and V' are arrays with 400 values, for example V = [2e-4 2.2821e-4 2.6109e-4 2.9936e-4 ... 1.499e-5]. K'm and K are constants. Lower limit of the integral is 380 and upper is 480.

採用された回答

Matt J
Matt J 2022 年 5 月 7 日
編集済み: Matt J 2022 年 5 月 7 日
I would imagine you have a vector of 400 lambda values as well. Then you could do,
numerator=trapz(lambda, S.*Vprime);
denominator=trapz(lambda, S.*V);
ratio=numerator/denominator*(Kmprime/Km)
  1 件のコメント
Martin Fertal
Martin Fertal 2022 年 5 月 8 日
Yes that's exatly what i need. Thak you, it helped me a lot.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by