Skip to content

Commit 4343499

Browse files
committed
documentation
1 parent 12c5e94 commit 4343499

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ coverage.xml
4848

4949
# vim
5050
*.sw?
51+
/.vscode

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
55

66
## [Unreleased]
77

8+
### Changed
9+
- `Data.norm_for_each`: allow for normlization for each combination of a set of variables
10+
811
## [3.6.1]
912

1013
### Changed

tests/data/norm_for_each.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ def test_3D():
2020
assert np.all(np.isclose(data.channels[-1][:], data.channels[0][:]))
2121

2222

23-
def test_two_norms():
23+
def test_two_vars():
2424
data = wt.open(datasets.wt5.v1p0p1_MoS2_TrEE_movie)
2525
data.norm_for_each("w1", "d2")
2626
assert np.all(data.channels[0][:].max(axis=0) == 1)
2727

2828

2929
if __name__ == "__main__":
3030
test_3D()
31-
test_two_norms()
31+
test_two_vars()

0 commit comments

Comments
 (0)