Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- XLDennis, the MSDN Library, and VBA rant
- Using LINEST for non-linear curve fitting
- Filling Blanks with Go To-Special (and local help rant)
- Cubic Splines
- Writing Arrays to the worksheet - VBA function
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Automating chart scale limits - update
- Daily Download 5: Frame Analysis
- About Newton Excel Bach
- Moving averages and User Defined Array Functions
Recent Comments
Category Archives: VBA
Anniversaries
It has just come to my notice that this year I missed my half millionth Birthhour, which was also my 30 millionth Birthminute. Luckily I still have plenty of time to prepare for my 2 billionth Birthsecond. To avoid missing … Continue reading
Solving simultaneous equations – Fortran dll
The file simultaneous.zip has been modified to allow access to a Fortran simultaneous equation routine, compiled as a dll. The original file was posted in solving simultaneous equations. The advantages of a compiled routine include: Much better performance Greater precision through … Continue reading
Posted in Arrays, Fortran, Link to dll, Maths, UDFs, VBA
Tagged dll, Excel, Fortran, Simultaneous equations, UDF, VBA
3 Comments
Trigonometric Functions in VBA – Update
In this post from February a set of VBA trigonometric functions were presented, using the derivations given on the Microsoft Developer Network site: Derived Math Functions Unfortunately two of the functions were wrong; the correct versions are shown below: Inverse Secant … Continue reading
Linking Excel to Fortran – 2
In this post the procedures described for C++ here will be replicated for Fortran: The spreadsheet, fortran source code, and compiled dll described in this code may be downloaded from Cubic.zip As always, it is better to use the downloaded code, … Continue reading
Posted in Excel, Fortran, Link to dll, Maths, UDFs, Uncategorized, VBA
Tagged Cubic, Excel, Fortran, Quadratic, UDF, VBA
23 Comments
Linking Excel to Fortran
An earlier series of posts described how to link Excel to programs written in C or C++. The same advantages of increased security and performance may be obtained by linking to Fortran programs with the additional advantages: Many specialist engineering and … Continue reading