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 CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by