IBB-Helper 0.4.8.dev10__tar.gz → 0.4.8.dev11__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.dev10/src/IBB_Helper.egg-info → ibb_helper-0.4.8.dev11}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/pyproject.toml +1 -1
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/plot_2d.py +3 -2
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11/src/IBB_Helper.egg-info}/PKG-INFO +1 -1
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/LICENSE +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/README.md +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/setup.cfg +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/setup.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/__init__.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/animate.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/combine_plots.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/display.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/display_eigen.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/display_matrix.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/extend_plot.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/minimize.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/num_int.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/plot_3d.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/plot_param_grid.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper/symbolic_BSpline.py +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper.egg-info/SOURCES.txt +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper.egg-info/dependency_links.txt +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper.egg-info/requires.txt +0 -0
- {ibb_helper-0.4.8.dev10 → ibb_helper-0.4.8.dev11}/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.dev11
|
|
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.dev11"
|
|
8
8
|
description = "Helper functions for symbolic math, matrix visualization, and plotting"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "BSD-3-Clause"
|
|
@@ -5,7 +5,7 @@ from sympy import latex, Matrix
|
|
|
5
5
|
|
|
6
6
|
def plot_2d(exprs,var,labels=None,line_styles=None,colors=None,title="2D Plot",
|
|
7
7
|
xlabel="x",ylabel="y",xlim=None,ylim=None,resolution=400,show=True,_break_=None,
|
|
8
|
-
fontsize=14,title_size=None,label_size=None,tick_size=None,legend_size=None):
|
|
8
|
+
fontsize=14,title_size=None,label_size=None,tick_size=None,legend_size=None,linewidth=2):
|
|
9
9
|
|
|
10
10
|
"""
|
|
11
11
|
Plots 2D curves from symbolic expressions or numeric datasets using Matplotlib.
|
|
@@ -128,7 +128,8 @@ def plot_2d(exprs,var,labels=None,line_styles=None,colors=None,title="2D Plot",
|
|
|
128
128
|
label=label,
|
|
129
129
|
linestyle=style,
|
|
130
130
|
color=color,
|
|
131
|
-
marker=marker
|
|
131
|
+
marker=marker,
|
|
132
|
+
linewidth=linewidth
|
|
132
133
|
)
|
|
133
134
|
|
|
134
135
|
# Standard y = f(x)
|
|
@@ -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.dev11
|
|
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.dev10 → ibb_helper-0.4.8.dev11}/src/IBB_Helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|