Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- Using LINEST for non-linear curve fitting
- XLDennis, the MSDN Library, and VBA rant
- Filling Blanks with Go To-Special (and local help rant)
- Cubic Splines
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Daily Download 5: Frame Analysis
- Automating chart scale limits - update
- Writing Arrays to the worksheet - VBA function
- About Newton Excel Bach
- Downloads
Recent Comments
Category Archives: VBA
Gaussian Quadrature
The previous post on integration provided an Excel User Defined Function (UDF) to perform numerical integration using Simpson’s Rule or the Trapezoidal Rule. A third method is Gaussian Quadrature which is often much more accurate and/or quicker than Simpson’s Rule. The UDF GaussInt() … Continue reading
Posted in Excel, Maths, Newton, UDFs, VBA
Tagged Eval.xls, Excel, Gaussian Quadrature, Integration, Numerical methods, UDF, VBA
27 Comments
Another update to IP.xls
Following some suggestions from Mike Seymour I have modified my polyline intersection function, and added a new version. The changes are: The data ranges for the new function, IP4(), are entered as four separate ranges, so the X and Y … Continue reading
Combining text files
Updated 3 April 2009. Following Jimmy Pena’s comments I have revised the code to read and write the files in one operation, rather than line by line. I have also added the option to add a numbered separator line between … Continue reading
Posted in Excel, VBA
10 Comments
Frame Analysis with Excel – 6; Beam end releases and actions
Continuing from: Frame Analysis with Excel – 5; Large frames in Excel 2003 Download Frame3.zip – the download file includes complete open source code. The frame analysis spreadsheet presented previously has now been revised to deal with beam end releases (either rotation or translation) … Continue reading
Posted in Excel, Finite Element Analysis, Frame Analysis, Newton, VBA
4 Comments
A Sort Function
There is often a need to sort data within a VBA routine, but VBA does not have a built in sort function, so I recently had a look for what is on offer on the Internet. Chip Pearson has an … Continue reading