recall(ids, deg=None, rad=None, along=None)
recall(id) revisits the previously named location. recall([ids]) revisits the center of several previously named locations.
Optional arguments deg, rad, along work as in at.
Locations are stored on a per-figure basis, not on a per-subplot basis.
This is useful, e.g., to place text that spans across panels after shrinking.
import qplot as qp
import numpy as np
qp.figure('memo', 3, 3)
xx = np.arange(0, 2*np.pi, .01)
qp.subplot(2,1,0)
qp.plot(xx, np.cos(xx))
qp.yaxis(' ', [-1, 0, 1], x=0, axshift=5)
qp.memo('A', 'left', 'middle')
qp.shrink()
qp.subplot(2,1,1)
qp.plot(xx, np.sin(xx))
qp.yaxis(' ', [-1, 0, 1], x=0, axshift=5)
qp.memo('B', 'left', 'middle')
qp.shrink()
qp.panel()
qp.recall(['A', 'B'], deg=90)
qp.align('center', 'top')
qp.text('Amplitude (normalized)')