Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- XLDennis, the MSDN Library, and VBA rant
- Latex Maths Text in Excel
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Cubic Splines
- Filling Blanks with Go To-Special (and local help rant)
- Using LINEST for non-linear curve fitting
- Retrieving unique values from a range or array ...
- Contour plots with Excel and Matplotlib
- Frame Analysis with Excel
- The angle between two vectors, Python version
Recent Comments
Category Archives: Maths
IP.xls updated
The spreadsheet IP.xls has been updated (previous post) with the addition of a function to find the minimum perpendicular distance from a point (or series of points) to a polyline: Pdist =PDist(Line,Points) Line is a range with at least two rows containing … Continue reading
Significant Figures
Excel does not provide any built in functions to round values to a specified number of significant figures. The UDF below, recently posted at the Eng-Tips forum, will do the job: Public Function sigfig(my_num, digits) As Double Dim num_places As Integer … 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 – dll
I have converted the trigonometric functions presented in this earlier post into a Fortran dll. The dll and associated spreadsheet and add-in files can be downloaded from here. This file and the associated file Trig.dll provide trigonometric and hyperbolic functions not … Continue reading
Posted in Excel, Link to dll, Maths, Newton, UDFs
Tagged dll, Excel, Fortran, hyperbolic functions, Trigonometric functions, UDF, VBA
2 Comments
Elegant proofs 3
At The Math Less Travelled it says: “Did you know that the ratio between the side of any triangle and the sine of the opposite angle is equal to the diameter of the triangle’s circumcircle? I didn’t! I just learned it … Continue reading