About 119,000 results
Open links in new tab
  1. What is the difference between ndarray and array in NumPy?

    Apr 8, 2013 · 17 numpy.ndarray() is a class, while numpy.array() is a method / function to create ndarray. In numpy docs if you want to create an array from ndarray class you can do it with 2 ways …

  2. What is `np.ndarray [Any, np.dtype [np.float64]]` and why does `np ...

    The documentation for np.typing.NDArray says that it is "a generic version of np.ndarray[Any, np.dtype[+ScalarType]] ". Where is the generalization in "generic" happening? And in the …

  3. How to construct a ndarray from a numpy array? python

    The difference between np.ndarray and np.array is that the former is the actual type, while the latter is a flexible shorthand function for constructing arrays from data in other formats.

  4. What is the difference between np.array() and np.asarray()?

    Jan 19, 2013 · Assume a is an ndarray, and m is a matrix, and they both have a dtype of float32: np.array(a) and np.array(m) will copy both, because that's the default behavior.

  5. module 'numpy' has no attribute 'ndarray' - Stack Overflow

    Oct 12, 2021 · The expect output will contain the location of your installed NumPy package and <class 'numpy.ndarray'> for the second print statement. In my case, it seemed that NumPy package was …

  6. TypeError: unhashable type: 'numpy.ndarray' - Stack Overflow

    The shape difference here is between a hashable 1D and unhashable 2D numpy array. numpy.ndarray can contain any type of element, e.g. int, float, string etc. Check the type an do a conversion if …

  7. TypeError: expected np.ndarray (got numpy.ndarray)

    Oct 7, 2024 · TypeError: expected np.ndarray (got numpy.ndarray) Asked 1 year, 2 months ago Modified 10 months ago Viewed 7k times

  8. python - How can I make a numpy ndarray from bytes? - Stack Overflow

    Another approach might be, if you have stored your data as records of bytes rather than as an entire ndarray and your selection of data varies from ndarray to ndarray, you can aggregate your pre-array …

  9. python - How to convert ndarray to array? - Stack Overflow

    May 16, 2017 · How to convert ndarray to array? Asked 12 years, 4 months ago Modified 8 years, 7 months ago Viewed 147k times

  10. Numpy Typing with specific shape and datatype - Stack Overflow

    Feb 14, 2022 · Currently, shape type information is reflected in ndarray.shape. However, most numpy functions that change the dimension or size of an array, however, don't necessarily know how to …