Im using UnivariateSpline for some Interpolation of 4560 supporting points.
Now I wanted to get the coeffs with
UnivariateSpline.get_coeffs()
This Method gives me a one-dimension-array of about 400 coeffs. Which way are they sorted? I want to use them for more calculating in C.
Any ideas?