MATLAB: Is it possible to compute cubic spline coefficient from known point distance? If yes, how to compute

cubic splinemathematics

As question, if I knows distance between two point sets. So, is that possible to compute cubic spline coefficient? And If yes, how to compute it?

Best Answer

x = rand(1,2) ;
y = rand(1,2) ;
pp = spline(x,y)
Related Question