IBB-Helper 0.4.8.dev2__tar.gz → 0.4.8.dev3__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.dev2/src/IBB_Helper.egg-info → ibb_helper-0.4.8.dev3}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/pyproject.toml +1 -1
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/display_matrix.py +4 -1
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3/src/IBB_Helper.egg-info}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/LICENSE +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/README.md +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/setup.cfg +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/setup.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/__init__.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/animate.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/combine_plots.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/display.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/display_eigen.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/extend_plot.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/minimize.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/num_int.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/plot_2d.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/plot_3d.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/plot_param_grid.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper/symbolic_BSpline.py +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper.egg-info/SOURCES.txt +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper.egg-info/dependency_links.txt +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper.egg-info/requires.txt +0 -0
- {ibb_helper-0.4.8.dev2 → ibb_helper-0.4.8.dev3}/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.dev3
|
|
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
|
|
@@ -4,7 +4,7 @@ import sympy as sp
|
|
|
4
4
|
from sympy import latex
|
|
5
5
|
from IPython.display import Math, display
|
|
6
6
|
|
|
7
|
-
def display_matrix(matrix, name="Matrix", r=8, c=8, evalf=False, prec=5):
|
|
7
|
+
def display_matrix(matrix, name="Matrix", r=8, c=8, evalf=False, prec=5,mathrm=True):
|
|
8
8
|
"""
|
|
9
9
|
Displays a truncated matrix with optional numerical evaluation and rational simplification.
|
|
10
10
|
|
|
@@ -34,6 +34,9 @@ def display_matrix(matrix, name="Matrix", r=8, c=8, evalf=False, prec=5):
|
|
|
34
34
|
processed = submatrix
|
|
35
35
|
|
|
36
36
|
# Display matrix
|
|
37
|
+
if mathrm:
|
|
38
|
+
expr = rf"\mathrm{{{expr}}}"
|
|
39
|
+
|
|
37
40
|
expr = latex(processed).replace(r'\\', r'\\[5pt]')
|
|
38
41
|
display(Math(rf"\large {name} = {expr}" if name else rf"\large {expr}"))
|
|
39
42
|
|
|
@@ -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.dev3
|
|
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.dev2 → ibb_helper-0.4.8.dev3}/src/IBB_Helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|