numpy.zeros(shape, dtype=float, order='C') Return a new array of given shape and type, filled with zeros.
numpy.array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0) Create an array.
numpy.vander(x, N=None, increasing=False)
numpy.triu(m, k=0)
numpy.full_like(a, fill_value, dtype=None, order='K', subok=True)
numpy.mat(data, dtype=None)
numpy.full(shape, fill_value, dtype=None, order='C')
numpy.copy(a, order='K')
numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)
numpy.tril(m, k=0)
Page 2 of 4