Measure module

This module is for functions that perform measurements.

This is some additional information I want to say about the measure module.

molecool_test.measure.calculate_distance(rA, rB)[source]

Calculate the distance between two points.

Parameters

rA, rB (np.ndarray) – The coordinates of each point.

Returns

distance – The distance between the two points.

Return type

float

Examples

>>> r1 = np.array([0, 0, 0])
>>> r2 = np.array([0, 0.1, 0])
>>> calculate_distance(r1, r2)
0.1

I can also put additional information about a function.

molecool_test.measure.calculate_angle(rA, rB, rC, degrees=False)[source]