Some terms in the equation are coefficients , so if anyone answers this just give me the general idea and guidlines
I would like to know how i can calculate the sum of a curve
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Iasonas Vasios
el 23 de Mzo. de 2021
Comentada: Iasonas Vasios
el 24 de Mzo. de 2021
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.
Respuesta aceptada
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))
Más respuestas (1)
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?
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!