IBB-Helper 0.4.8.dev9__tar.gz → 0.4.8.dev10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ibb_helper-0.4.8.dev9/src/IBB_Helper.egg-info → ibb_helper-0.4.8.dev10}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/pyproject.toml +1 -1
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/display_eigen.py +2 -2
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10/src/IBB_Helper.egg-info}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/LICENSE +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/README.md +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/setup.cfg +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/setup.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/__init__.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/animate.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/combine_plots.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/display.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/display_matrix.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/extend_plot.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/minimize.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/num_int.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/plot_2d.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/plot_3d.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/plot_param_grid.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper/symbolic_BSpline.py +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper.egg-info/SOURCES.txt +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper.egg-info/dependency_links.txt +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper.egg-info/requires.txt +0 -0
- {ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IBB_Helper
|
|
3
|
-
Version: 0.4.8.
|
|
3
|
+
Version: 0.4.8.dev10
|
|
4
4
|
Summary: Helper functions for symbolic math, matrix visualization, and plotting
|
|
5
5
|
Author-email: "University of Stuttgart, Institute for Structural Mechanics (IBB)" <mvs@ibb.uni-stuttgart.de>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -3,7 +3,7 @@ import sympy as sp
|
|
|
3
3
|
from sympy import latex
|
|
4
4
|
import IPython.display as ipy
|
|
5
5
|
|
|
6
|
-
def display_eigen(A, name="Matrix", evalf=False, prec=5, return_data=False, show="both", output="default"):
|
|
6
|
+
def display_eigen(A, name="Matrix", evalf=False, prec=5, return_data=False, show="both", output="default",reverse=False):
|
|
7
7
|
"""
|
|
8
8
|
Computes and displays the eigenvalues and eigenvectors of a matrix A with enhanced display options.
|
|
9
9
|
|
|
@@ -37,7 +37,7 @@ def display_eigen(A, name="Matrix", evalf=False, prec=5, return_data=False, show
|
|
|
37
37
|
A = sp.Matrix(A)
|
|
38
38
|
|
|
39
39
|
# Compute eigenvalues and eigenvectors
|
|
40
|
-
eigen_data = A.eigenvects()
|
|
40
|
+
eigen_data = sorted(A.eigenvects(), key=lambda x: x[0], reverse=reverse)
|
|
41
41
|
|
|
42
42
|
# To store raw data
|
|
43
43
|
eigvals = []
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IBB_Helper
|
|
3
|
-
Version: 0.4.8.
|
|
3
|
+
Version: 0.4.8.dev10
|
|
4
4
|
Summary: Helper functions for symbolic math, matrix visualization, and plotting
|
|
5
5
|
Author-email: "University of Stuttgart, Institute for Structural Mechanics (IBB)" <mvs@ibb.uni-stuttgart.de>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ibb_helper-0.4.8.dev9 → ibb_helper-0.4.8.dev10}/src/IBB_Helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|