For example, I have the following code:
# Solve for coefficients of quadratic approximation
def quad(p, x):
"""Solves for the coefficients of the quadratic approximation of a
polynomial ``p`` at points ``x``.
:param :cls:`numpy.polynomial.Polynomial` p:
The polynomial to be approximated by a quadratic function.
:param list x:
The three points along which the quadratic function is to be fitted.
"""
Notice the part where I say :cls:
. How do I make that link directly to the documentation for the numpy.polynomial.Polynomial
numpy.polynomial.Polynomial
class?