Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- About Newton Excel Bach
- Downloads
- Cubic Splines
- Deflections and Moments in Rectangular Plates
- Daily Download 5: Frame Analysis
- Using Linest for non-linear curve fitting, examples, hints and warnings
- Writing Arrays to the worksheet - VBA function
- Frame Analysis with Excel - 3, Continuous beam or frame
Recent Comments
Tag Archives: Cubic spline
AlgLib Spline Functions
Following earlier posts on cubic splines I have collected the Alglib interpolation routines, and the necessary supporting routines, and written interface functions to allow most of the 1Dspline routines to be called from the spreadsheet. Since there is a large measure … Continue reading
Posted in Excel, Maths, Newton, UDFs, VBA
Tagged Akima Spline, AlgLib, Catmull-Rom Spline, Cubic spline, Excel, Hermite Spline, Least Squares fit, Spline, Spline Integration, UDF, VBA
6 Comments
Cubic Hermitic and Cardinal Splines
In my previous post on splines I described a quick and dirty approach to adjusting a cubic spline to fit monotonic data, which did not meet with universal approval, so I have followed up Mike Woodhouse’s link: (http://en.wikipedia.org/wiki/Monotone_cubic_interpolation) which gives a … Continue reading
Posted in Charts, Excel, Maths, UDFs, VBA
Tagged Cardinal spline, Cubic Hermitic spline, Cubic spline, Excel, monotonic hermitic spline, UDF, VBA
8 Comments
Using Cubic Splines in Practice
I recently had an interesting query from Georg, a geography student in Germany regarding the use of cubic splines to fit a smooth curve to experimental data. The graph he sent me is shown below: The cubic spline has produced … Continue reading
Numerical solutions with CSpline
The CSpline function presented in a previous post fits a series of cubic polynomial curves to a specified series of points, returning the Y values for listed intermediate X values. I was recently asked if this could be reversed to … Continue reading
Posted in Excel, Maths, Newton, UDFs, VBA
Tagged Cubic spline, Excel, Numerical methods, solve equation, VBA
Leave a comment
Cubic Spline Update
The previous post in this series presented a User Defined Function (UDF) to fit a cubic spline to a series of points defined by XY coordinates. Each segment of the resulting spline is defined by a separate cubic curve, which may be … Continue reading