Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ Chronological list of authors
- Kushagar Garg
- Jeremy M. G. Leung
- Harshit Gajjela
- Kriti Dogra
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Place your name at the bottom of the list.

- Kunj Sinha

External code
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/lib/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ def decompose_matrix(matrix):
>>> S = scale_matrix(0.123)
>>> scale, shear, angles, trans, persp = decompose_matrix(S)
>>> scale[0]
0.123
np.float64(0.123)
>>> R0 = euler_matrix(1, 2, 3)
>>> scale, shear, angles, trans, persp = decompose_matrix(R0)
>>> R1 = euler_matrix(*angles)
Expand Down
Loading