I am using the linear interpolation in Math.Net 3.5
var method = Interpolation.Linear(x,y)
var y2 = method.Interpolate(x2)
Is there a way to interpolate a list of x values?
var yValues = method.Interpolate(xValues)
var method = Interpolation.Linear(x,y)
var y2 = method.Interpolate(x2)
Is there a way to interpolate a list of x values?
var yValues = method.Interpolate(xValues)