Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In current CVMix master, the returned value of fprime in evaluate cubic is not correct. For example, when linear interpolation is used, the returned value of fprime is fprime = coeffs(2) + h + h^2 it should be fprime = coeffs(2) + coeffs(3)*h + coeffs(4)*h^2 As it currently sits, the returned fprime is much too large (6 orders of magnitude in my tests relative to the corrected version)
- Loading branch information