Description Usage Arguments Examples
View source: R/runningIntegral.R
calculates the running integral for customer input
1 | runningIntegral(x, y, integrate.step = 1)
|
x |
variable x use for integration process |
y |
variable y use for integration process |
integrate.step |
= the step used for calculating the integrale the default value is 1 |
1 2 3 4 | npoints=1000
x=seq(1,npoints)
y=(dnorm(x, mean=npoints/2, sd=npoints/10))
runningIntegral(x,y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.