how can i solve numerically a vector integral?
Mostra commenti meno recenti
I have a plot of gaussian alike profile in matlab.
the plot presents the intensity (I) profile( E^2) as a function of location(radius) r.
i need to calculate the integral of I(r)*r*dr which is the area under the graph, i tried solving with trapz but the answer isnt correct, so how can i calculate this integral when
I(r) is a vector and r is a value i know?

5 Commenti
madhan ravi
il 15 Gen 2019
integral() with arrayvalued option?
Torsten
il 15 Gen 2019
trapz(r,I.*r) is too inexact ?
Adi
il 16 Gen 2019
Torsten
il 16 Gen 2019
As I wrote,
trapz(r_vector,r_vector.*intensity_vector)
if you want to approximate
integral(I(r)*r*dr )
Adi
il 16 Gen 2019
Risposte (0)
Categorie
Scopri di più su Numerical Integration and Differentiation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!