Last Update: 4/28/2015
You may notice that Origin has three integrate functions, integrate, integratexy and integ1.
| integratexy | integ1. | integrate | |
|---|---|---|---|
| Brief Description | Takes a pair of X and Y data and calculates the cumulative values of integrated area under the curve. Missing values will be ignored. | Takes a pair of X and Y data and calculates the mathematical area or absolute area under the curve. | Takes a set of Y data and calculates the cumulative values of integrated area under the curve. Row numbers other than the associated X are used as X values of the curve. Missing values will be ignored. |
| Options it provides | Calculate the mathematical area |
|
Calculate the mathematical areas |
| Script example |
newbook; col(a)={2:2:100}; col(b)= nlf_gauss(col(a),-20,50,20,2000); col(c)= IntegrateXY(col(a), col(b)); |
newbook; col(a)={2:2:100}; col(b)= nlf_gauss(col(a),-20,50,20,2000); integ1 iy:=col(b) type:=abs; |
newbook; col(a)={2:2:100}; col(b)= nlf_gauss(col(a),-20,50,20,2000); col(c)=Integrate(col(b)); |
Keywords:Integrate
Minimum Origin Version Required: 9.0