Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- Cubic Splines
- 2DFrame-py
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Downloads
- Writing Arrays to the worksheet - VBA function
- XLDennis, the MSDN Library, and VBA rant
- Contour plots with Excel and Matplotlib
- About Newton Excel Bach
- Weighted Least Squares Regression, using Excel, VBA, Alglib and Python
Recent Comments
Tag Archives: VBA
Cubic splines with horizontal data
Following a request here I have modified my cubic spline functions to accept input arranged in rows as well as columns. By default the output arrays will have the same orientation as the range of interpolation X values, but I have also added … Continue reading
Beam actions and deflections, 3D or 2D
Two new functions have been added to the ConBeamU spreadsheet, last discussed here. The new version can be downloaded from ConBeamU.zip, including full open-source code. The new functions, BeamAct3D and BeamAct2D calculate forces, moments, deflections and rotations along a 3D … Continue reading
Posted in Beam Bending, Excel, Finite Element Analysis, Frame Analysis, Newton, Strand7, UDFs, VBA
Tagged 2D beam, 3D beam, beam analysis, BeamAct functions, Excel, UDF, VBA
2 Comments
Frame Analysis with Excel
Starting from 2009 I have posted a series on frame analysis using Excel, starting from a simple “on-sheet” solution and working through to applications able to solve large 2D or 3D problems. To follow the analysis process it is best … Continue reading
Two MaxAbs functions
Excel does not have a built-in function to find the maximum absolute value of a range, perhaps because the Max() and Abs() functions can be combined in an array function: =Max(Abs(datarange)) This solution has a number of drawbacks however: The … Continue reading
Posted in Arrays, Excel, Maths, Newton, UDFs, VBA
Tagged Excel, MaxAbs function, maximum absolute value, UDF, VBA
9 Comments
Solving Quadratic, Cubic, Quartic and higher order equations; examples
A previous post presented a spreadsheet with functions for solving cubic and quartic equations, and this has been extended with another function solving higher order polynomials. The functions are actually very easy to use, but the documentation in the spreadsheets is quite brief, … Continue reading
Posted in Arrays, Excel, Link to Python, Maths, Newton, UDFs, VBA
Tagged Cubic, Excel, Higher order polynomials, Jenkins-Traub, Python, Quadratic, Quartic, solving polynomials, UDF, VBA
13 Comments