I would like to know how i can calculate the sum of a curve

1 visualización (últimos 30 días)
I need help on guiding me how i am going to calculate the following equation:
This is the mean x-ray photon fluence per unit DAK. I have my x-ray spectrum and i would like to calculate the φ0. I use trapz but the answer i get it is not right (maybe my spectrum isn't the exact as the paper's one. Also the following step is to calculate this equation where i think trapz is not going to help me:
I will attach my excel data in case they are going to help you understand what i am asking.
  1 comentario
Iasonas Vasios
Iasonas Vasios el 23 de Mzo. de 2021
Some terms in the equation are coefficients , so if anyone answers this just give me the general idea and guidlines

Iniciar sesión para comentar.

Respuesta aceptada

David Hill
David Hill el 23 de Mzo. de 2021
If you load your two columns. Making E the first column and phi0 the second column. dE is 0.5
deltaE=0.5;
meanFluence=sum(phi0*deltaE);%just a descrete sum (I got:6.5710e+03)
g1=%similarly, although I don't know what the other terms are (dSe, u(E), uen(E))
  1 comentario
Iasonas Vasios
Iasonas Vasios el 24 de Mzo. de 2021
Thank you very much for your help. The other terms are coeffiecients that are given in the paper.
The asnwer you get is the excact as function trapz calculates but your answer helped me very much.

Iniciar sesión para comentar.

Más respuestas (1)

William Rose
William Rose el 24 de Mzo. de 2021
I assume column D of the workbook you attached is the data.
The spacing, , is 0.5 keV for all samples.
Assunming you have read the data in from the spreadhseet into variable phi0E:
deltaE=0.5;
phi0bar=sum(phi0E)*deltaE;
So if you just add up all the values that is not the right answer? What IS the right answer and what is the source of that right answer?
  1 comentario
Iasonas Vasios
Iasonas Vasios el 24 de Mzo. de 2021
The right answer comes from the attached paper. The answer you giving me is going to work i think yes. The difference between the result i get and the paper's one is because of the slightly different x-ray spectrum that i generate. I can't generate the excact one as in the paper.
Thank you for your interest

Iniciar sesión para comentar.

Categorías

Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by