Top |
GObject ╰── NcmSpline ╰── NcmSplineCubic ├── NcmSplineCubicD2 ╰── NcmSplineCubicNotaknot
This class implements the functions which use a polynomial interpolation method of third degree.
NcmVector *
ncm_spline_cubic_peek_b_vec (const NcmSplineCubic *s
);
Gets the vector of coefficients b. This method is used by subclasses to implement
the ncm_spline_prepare()
virtual method. It should not be used by the user.
NcmVector *
ncm_spline_cubic_peek_c_vec (const NcmSplineCubic *s
);
Gets the vector of coefficients c. This method is used by subclasses
to implement the ncm_spline_prepare()
virtual method.
It should not be used by the user.
NcmVector *
ncm_spline_cubic_peek_d_vec (const NcmSplineCubic *s
);
Gets the vector of coefficients d. This method is used by subclasses
to implement the ncm_spline_prepare()
virtual method.
It should not be used by the user.
NcmVector *
ncm_spline_cubic_peek_diag_vec (const NcmSplineCubic *s
);
Gets the vector diag of the tridiagonal matrix. This method is used by subclasses
to implement the ncm_spline_prepare()
virtual method.
It should not be used by the user.
NcmVector *
ncm_spline_cubic_peek_offdiag_vec (const NcmSplineCubic *s
);
Gets the vector offdiag of the tridiagonal matrix. This method is used by subclasses
to implement the ncm_spline_prepare()
virtual method.
It should not be used by the user.