pybounds 0.0.7__tar.gz → 0.0.8__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.
Potentially problematic release.
This version of pybounds might be problematic. Click here for more details.
- {pybounds-0.0.7 → pybounds-0.0.8}/PKG-INFO +1 -1
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/__init__.py +2 -2
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/observability.py +1 -1
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds.egg-info/PKG-INFO +1 -1
- {pybounds-0.0.7 → pybounds-0.0.8}/setup.py +1 -1
- {pybounds-0.0.7 → pybounds-0.0.8}/LICENSE +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/README.md +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/jacobian.py +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/observability_transform.py +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/simulator.py +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds/util.py +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds.egg-info/SOURCES.txt +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds.egg-info/dependency_links.txt +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/pybounds.egg-info/top_level.txt +0 -0
- {pybounds-0.0.7 → pybounds-0.0.8}/setup.cfg +0 -0
|
@@ -7,7 +7,7 @@ from .observability import FisherObservability
|
|
|
7
7
|
from .observability import SlidingFisherObservability
|
|
8
8
|
from .observability import ObservabilityMatrixImage
|
|
9
9
|
from .observability import transform_states
|
|
10
|
-
from .observability import SymbolicJacobian
|
|
11
10
|
|
|
12
|
-
from .
|
|
11
|
+
from .jacobian import SymbolicJacobian
|
|
13
12
|
|
|
13
|
+
from .util import colorline
|
|
@@ -9,7 +9,7 @@ import matplotlib.pyplot as plt
|
|
|
9
9
|
from mpl_toolkits.axes_grid1.inset_locator import inset_axes
|
|
10
10
|
import sympy as sp
|
|
11
11
|
from .util import LatexStates
|
|
12
|
-
from jacobian import SymbolicJacobian
|
|
12
|
+
from .jacobian import SymbolicJacobian
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
class EmpiricalObservabilityMatrix:
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="pybounds", # Replace with your own username
|
|
8
|
-
version="0.0.
|
|
8
|
+
version="0.0.8",
|
|
9
9
|
author="Ben Cellini, Burak Boyacioglu, Floris van Breugel",
|
|
10
10
|
author_email="bcellini00@gmail.com",
|
|
11
11
|
description="Bounding Observability for Uncertain Nonlinear Dynamics Systems (BOUNDS)",
|
|
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
|