Check whether two Warp vectors are element-wise equal within a tolerance.
Uses the same criterion as NumPy’s allclose:
abs(a[i] - b[i]) <= atol + rtol * abs(b[i]) for every element.
- Parameters:
-
- Returns:
True if all elements satisfy the tolerance, False otherwise.
- Return type:
bool