Plot Functions (sigpy.plot)ΒΆ

This module contains plotting functions based on matplotlib for image, line, and scatter plots.

A feature of these plotting functions is that they can be controlled using only hotkeys so the user does not need to move away from the keyboard.

Given an array x, an example usage is:

>>> ImagePlot(x)
>>> LinePlot(x)
>>> ScatterPlot(x)
sigpy.plot.ImagePlot Plot array as image.
sigpy.plot.LinePlot Plot array as lines.
sigpy.plot.ScatterPlot Plot array as scatter.