plot ==== .. py:method:: luminet.isoradial.Isoradial.plot(ax: matplotlib.axes.Axes, z=None, cmap=None, norm=None, **kwargs) -> matplotlib.axes.Axes Plot the isoradial. :Parameters: * **ax** (:py:class:`~matplotlib.axes.Axes`) -- The axis on which the isoradial should be plotted * **z** (*array-like, optional*) -- The color values to be used. if no color values are passed, the isoradial is plotted as-is. * **cmap** (*str, optional*) -- The colormap to be used. Only used if ``z`` is not None. Must be a valid matplotlib colormap string. Default is "Greys_r" * **norm** (*tuple, optional*) -- The normalization to be used. Default is min-max of z, if passed. * **\*\*kwargs** -- Additional arguments to be passed to the colorline function :returns: :py:class:`~matplotlib.axes.Axes` -- The axis with the isoradial plotted.