Categories
RSS Feed
Search NewtonExcelBach
Archives
Top Posts
- 2DFrame-py
- Using LINEST for non-linear curve fitting
- Cubic Splines
- Biaxial bending update
- Downloads
- Weighted Least Squares Regression, using Excel, VBA, Alglib and Python
- 3DFrame Ver 1.03 and Frame4 Ver 3.07
- Automatic download of csv files
- XLDennis, the MSDN Library, and VBA rant
- The history of the theory of beam bending - Part 3
Recent Comments
Category Archives: Newton
The speed of loops in Python
This post is based on exercises published by Cyrille Rossant in his book “Learning IPython for Interactive Computing and Data Visualization”. Cyril also has a blog well worth looking at: http://cyrille.rossant.net/blog/ (Thanks to Alfred Vachris and Boris Vishnevsky for the links). … Continue reading
Posted in Arrays, Link to Python, NumPy and SciPy
Tagged IPython, Numpy, Pylab, Python, working with arrays
Leave a comment
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
Converting from global to local coordinates (and vice versa)
In 3D structural analysis (as well as many other applications) it is necessary to convert section properties, forces, and deflections between coordinate systems defined by individual structural members (local coordinates) and the common coordinate system defining the entire structure (global … Continue reading
Posted in Excel, Finite Element Analysis, Frame Analysis, Link to Python, Maths, UDFs, VBA
Tagged axis rotation, Excel, global axes, local axes, Python, PyXLL, UDF, VBA
22 Comments
Python for VBA users- 7; Making Python go Faster
As reported in the previous post in this series, although the compiled routines included in packages such as Numpy, Scipy, and Pysparse are very fast, other parts of the code turned out to be slower than the equivalent in VBA. … Continue reading
Posted in Arrays, Excel, Finite Element Analysis, Frame Analysis, Link to Python, Newton, NumPy and SciPy, UDFs, VBA
Tagged Excel, Frame Analysis, PYsparse, Python, sparse matrices. Numba, VBA
Leave a comment