Renamed matrixes to matrices

This commit is contained in:
Sebastian Kloth 2024-01-09 13:00:12 +01:00
parent 949ed877fb
commit 7dd2074ee5

View File

@ -38,7 +38,7 @@ def open(
used, if there is exactly one in the directoy.
trajectory (opt.): Descriptor of the trajectory (xtc or trr file).
nojump (opt.):
If nojump matrixes should be generated. They will alwyas be loaded
If nojump matrices should be generated. They will alwyas be loaded
if present
index_file (opt.): Descriptor of the index file (ndx file).
charges (opt.):
@ -97,9 +97,9 @@ def open(
coords = coordinates.Coordinates(frames, atom_subset=atom_set)
if nojump:
try:
frames.nojump_matrixes
frames.nojump_matrices
except reader.NojumpError:
reader.generate_nojump_matrixes(coords)
reader.generate_nojump_matrices(coords)
return coords