https://issues.apache.org/ooo/show_bug.cgi?id=122202
Bug ID: 122202
Issue Type: FEATURE
Summary: Numerical integration - Simpson's rules
Classification: Application
Product: Calc
Version: AOO400-dev
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: code
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Given: equally spaced x values, x0 till xn and respective function values in
two columns
Three points n=2: Simpson's 1/3 rule
Function Simp13 = (x2-x0)*(f(x0)+4f(x1)+f(x2))/6
Four points n=3: Simpson's 3/8 rule
Function Simp38 = (x3-x0)*(f(x0)+3f(x1)+3f(x2)+f(x3))/8
Five points n=4: Simpson's 1/3 rule on first and last three points
Six points n=5: Simpson's 1/3 rule on first three points and Simpson's 3/8 rule
on last last four points
etc.
--
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.