IBB-Helper 0.4.8.dev18__tar.gz → 0.4.8.dev19__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.dev18/src/IBB_Helper.egg-info → ibb_helper-0.4.8.dev19}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/pyproject.toml +1 -1
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/plot_2d.py +2 -2
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19/src/IBB_Helper.egg-info}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/LICENSE +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/README.md +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/setup.cfg +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/setup.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/__init__.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/animate.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/combine_plots.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/display.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/display_eigen.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/display_matrix.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/extend_plot.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/minimize.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/num_int.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/plot_3d.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/plot_param_grid.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper/symbolic_BSpline.py +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper.egg-info/SOURCES.txt +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper.egg-info/dependency_links.txt +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper.egg-info/requires.txt +0 -0
- {ibb_helper-0.4.8.dev18 → ibb_helper-0.4.8.dev19}/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.dev19
|
|
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 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "IBB_Helper"
|
|
7
|
-
version = "0.4.8.
|
|
7
|
+
version = "0.4.8.dev19"
|
|
8
8
|
description = "Helper functions for symbolic math, matrix visualization, and plotting"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "BSD-3-Clause"
|
|
@@ -193,8 +193,8 @@ def plot_2d(exprs, var, labels=None, line_styles=None, colors=None,
|
|
|
193
193
|
min_y, max_y = np.nanmin(flat_y), np.nanmax(flat_y)
|
|
194
194
|
|
|
195
195
|
# Calculate padding (handle case where max == min)
|
|
196
|
-
pad_x = (max_x - min_x) * 0.
|
|
197
|
-
pad_y = (max_y - min_y) * 0.
|
|
196
|
+
pad_x = (max_x - min_x) * 0.2 if max_x != min_x else 0.5
|
|
197
|
+
pad_y = (max_y - min_y) * 0.2 if max_y != min_y else 0.5
|
|
198
198
|
|
|
199
199
|
# Apply padded limits
|
|
200
200
|
# These act as the "Auto" default. They will be overwritten below
|
|
@@ -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.dev19
|
|
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.dev18 → ibb_helper-0.4.8.dev19}/src/IBB_Helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|