Let's say I have 2 arrays
x = [1,2,3,4,5,6]
y = [4,53,234,43,12,2]
Polynomial of degree n
to fit y = F(x)
. How to interpolate y from x
Let's say I have 2 arrays
x = [1,2,3,4,5,6]
y = [4,53,234,43,12,2]
Polynomial of degree n
to fit y = F(x)
. How to interpolate y from x
Copyright © 2021 Jogjafile Inc.
One can use Apache Commons Math. Here's an example