if trajectory is None: vectors = start_frame - end_frame else: vectors = displacements_without_drift(start_frame, end_frame, trajectory) if axis == "all": delta_r = (vectors**2).sum(axis=1) ** 0.5 elif axis == "xy" or axis == "yx": return (vectors[:, [0, 1]]**2).sum(axis=1) ** 0.5 <---------------------- elif axis == "xz" or axis == "zx": return (vectors[:, [0, 2]]**2).sum(axis=1) ** 0.5 <---------------------- elif axis == "yz" or axis == "zy": return (vectors[:, [1, 2]]**2).sum(axis=1) ** 0.5 <---------------------- elif axis == "x": delta_r = np.abs(vectors[:, 0])
Thanks. Made a hotfix and updated the enviroment mdevaluate/24.02
Fixed, this is implemented in mdevaluate-2025.07
No dependencies set.
The note is not visible to the blocked user.
Thanks. Made a hotfix and updated the enviroment mdevaluate/24.02
Fixed, this is implemented in mdevaluate-2025.07