Alphabetical list Categories
close Close a QPlot window
Call signature:

close(fn=None)

Help text:

close closes the current window.
close(filename) closes the named window.
See also closeall.

Example:

import qplot as qp

import numpy as np

import time

qp.figure('', 3, 3)

qp.plot(np.arange(0, 10, .1), np.cos(np.arange(0, 10, .1)))

time.sleep(1)

qp.close()

QPlot Documentation — (C) Daniel Wagenaar, 2014–2023