numpy.zeros()
  • References/Python/NumPy/Routines/Array creation routines

numpy.zeros(shape, dtype=float, order='C') Return a new array of given shape and type, filled with zeros.

2025-01-10 15:47:30
numpy.vander()
  • References/Python/NumPy/Routines/Array creation routines

numpy.vander(x, N=None, increasing=False)

2025-01-10 15:47:30
numpy.full_like()
  • References/Python/NumPy/Routines/Array creation routines

numpy.full_like(a, fill_value, dtype=None, order='K', subok=True)

2025-01-10 15:47:30
numpy.array()
  • References/Python/NumPy/Routines/Array creation routines

numpy.array(object, dtype=None, copy=True, order=None, subok=False, ndmin=0) Create an array.

2025-01-10 15:47:30
numpy.triu()
  • References/Python/NumPy/Routines/Array creation routines

numpy.triu(m, k=0)

2025-01-10 15:47:30
numpy.full()
  • References/Python/NumPy/Routines/Array creation routines

numpy.full(shape, fill_value, dtype=None, order='C')

2025-01-10 15:47:30
numpy.frombuffer()
  • References/Python/NumPy/Routines/Array creation routines

numpy.frombuffer(buffer, dtype=float, count=-1, offset=0) Interpret a buffer as a 1-dimensional array.

2025-01-10 15:47:30
numpy.linspace()
  • References/Python/NumPy/Routines/Array creation routines

numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)

2025-01-10 15:47:30
numpy.tril()
  • References/Python/NumPy/Routines/Array creation routines

numpy.tril(m, k=0)

2025-01-10 15:47:30
numpy.fromiter()
  • References/Python/NumPy/Routines/Array creation routines

numpy.fromiter(iterable, dtype, count=-1) Create a new 1-dimensional array from an iterable object.

2025-01-10 15:47:30