n_points, n, p = point.shape
if (n, p) != (self.n, self.p):
return gs.array([False] * n_points)
point_transpose = Matrices.transpose(point)
After Change
Array of booleans evaluating if the corresponding points
belong to the Stiefel manifold.
right_shape = self.embedding_manifold.belongs(point)
if not right_shape:
return right_shape
point_transpose = Matrices.transpose(point)