#include "Spline.hh" string Spline::info() { Table T(split("knot x f f' a b c d df1 df2")); enumerate( i, k, knots ) T << i << k.x << k.f << k.df << k.a << k.b << k.c << k.d << k.df1() << k.df2(); return T.str(); return ""; }