Skip to content

Commit 2a5b1ae

Browse files
authored
Merge pull request #272 from alexlib/master
return to scientific notation
2 parents 19c8e4a + af34cff commit 2a5b1ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openpiv/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def save(
390390
v: np.ndarray,
391391
flags: Optional[np.ndarray] = None,
392392
mask: Optional[np.ndarray] = None,
393-
fmt: str="%8.4f",
393+
fmt: str="%.4e",
394394
delimiter: str="\t",
395395
)-> None:
396396
"""Save flow field to an ascii file.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
install_requires=[
2222
'numpy',
23-
'imageio',
23+
'imageio>=2.22.4',
2424
'matplotlib>=3',
2525
'scikit-image',
2626
'scipy',

0 commit comments

Comments
 (0)