kplot 1.1.25__tar.gz → 1.1.26__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.
- {kplot-1.1.25 → kplot-1.1.26}/PKG-INFO +1 -1
- {kplot-1.1.25 → kplot-1.1.26}/pyproject.toml +1 -1
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/plot.py +2 -1
- {kplot-1.1.25 → kplot-1.1.26}/README.md +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/__init__.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/axes.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/cmaps.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/image.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/movie.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/styles/example.mpl +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/styles/publication.mpl +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/threeD/__init__.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/threeD/slider_images.py +0 -0
- {kplot-1.1.25 → kplot-1.1.26}/src/kplot/utils.py +0 -0
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
# !==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==
|
|
4
4
|
from kplot.axes import subplots
|
|
5
5
|
|
|
6
|
-
from
|
|
6
|
+
from collections.abc import Iterable
|
|
7
|
+
from kbasic.typing import Number, Optional
|
|
7
8
|
from numpy import asarray, hstack, column_stack, newaxis, concatenate, hypot, diff,\
|
|
8
9
|
nanmin, nanmax, ndarray, log10
|
|
9
10
|
from matplotlib.figure import Figure
|
|
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
|