I am trying to write a function equilateral(x, y):
that takes two np.ndarrays of shape (N,)
, where x and y are natural numbers and returns a point z an np.ndarray of shape (N,)
such that (x, y, z) are are the vertices of an equilateral triangle.
Any one please suggest.