finding numerical integration of vectors

1 次查看(过去 30 天)
I have two vectors and I want the numerical integration of the product of this two vectors from zero to infinity. For example, P=integral(A(u)B(u))du from 0 to infinity. A(u) and B(u) are vectors.
How can I do that? Can I use P=trapz(A(u).*B(u))?

回答(1 个)

Torsten
Torsten 2017-3-6
P = trapz(U,AU.*BU);
where AU and BU are the vectors evaluated at U.
Best wishes
Torsten.

类别

Help CenterFile Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by