About 103 results
Open links in new tab
  1. numpy.load — NumPy v2.2 Manual

    numpy.load# numpy. load (file, mmap_mode = None, allow_pickle = False, fix_imports = True, encoding = 'ASCII', *, max_header_size = 10000) [source] # Load arrays or pickled objects from .npy, .npz or pickled files.

  2. numpy.load — NumPy v2.1 Manual

    numpy.load# numpy. load (file, mmap_mode = None, allow_pickle = False, fix_imports = True, encoding = 'ASCII', *, max_header_size = 10000) [source] # Load arrays or pickled objects from .npy, .npz or pickled files.

  3. numpy.loadtxt — NumPy v2.2 Manual

    This function aims to be a fast reader for simply formatted files. The genfromtxt function provides more sophisticated handling of, e.g., lines with missing values. Each row in the input text file must have the same number of values to be able to read all values.

  4. numpy.load — NumPy v1.18 Manual

    May 24, 2020 · numpy.load¶ numpy.load (file, mmap_mode=None, allow_pickle=False, fix_imports=True, encoding='ASCII') [source] ¶ Load arrays or pickled objects from .npy, .npz or pickled files.

  5. NumPy: the absolute basics for beginners — NumPy v2.2 Manual

    The ndarray objects can be saved to and loaded from the disk files with loadtxt and savetxt functions that handle normal text files, load and save functions that handle NumPy binary files with a .npy file extension, and a savez function that handles NumPy files with a .npz file extension.

  6. NumPy for MATLAB users — NumPy v2.2 Manual

    NumPy is based on Python, a general-purpose language. The advantage to NumPy is access to Python libraries including: SciPy, Matplotlib, Pandas, OpenCV, and more. In addition, Python is often embedded as a scripting language in other software, allowing NumPy to be used there too.

  7. numpy.exp — NumPy v2.2 Manual

    >>> import matplotlib.pyplot as plt >>> x = np . linspace ( - 2 * np . pi , 2 * np . pi , 100 ) >>> xx = x + 1 j * x [:, np . newaxis ] # a + ib over complex plane >>> out = np . exp ( xx ) >>> plt . subplot ( 121 ) >>> plt . imshow ( np . abs ( out ), ...

  8. numpy.loadtxt — NumPy v1.22 Manual

    The genfromtxt function provides more sophisticated handling of, e.g., lines with missing values. New in version 1.10.0. The strings produced by the Python float.hex method can be used as input for floats.

  9. NumPy

    Python backend system that decouples API from implementation; unumpy provides a NumPy API. tensorly: Tensor learning, algebra and backends to seamlessly use NumPy, PyTorch, TensorFlow or CuPy.

  10. Linear algebra (numpy.linalg) — NumPy v2.2 Manual

    The NumPy linear algebra functions rely on BLAS and LAPACK to provide efficient low level implementations of standard linear algebra algorithms.

Refresh