Région de recherche :

Date :

https://numpy.org › doc › stable › user › basics.types.html

Data types — NumPy v2.1 Manual

Learn how to create and manipulate arrays with different numerical and string data types in NumPy. See the available types, their bit-widths, byte-orders, and how to convert them.

https://numpy.org › doc › stable › reference › arrays.dtypes.html

Data type objects (dtype) — NumPy v2.1 Manual

Learn how to create and use data type objects (dtype) to describe the memory layout and interpretation of array items in NumPy. See examples of scalar, structured and sub-array data types, and how to specify byte order, size and alignment.

https://numpy.org › doc › 1.20 › user › basics.types.html

Data types — NumPy v1.20 Manual

Learn about the primitive and advanced numerical types supported by NumPy, and how to create and modify arrays with different data types. See examples of data type objects, array scalars, and conversions between types.

https://docs.scipy.org › doc › numpy-1.13.0 › reference › arrays.dtypes.html

Data type objects (dtype) — NumPy v1.13 Manual - SciPy.org

A data type object (an instance of numpy.dtype class) describes how the bytes in the fixed-size block of memory corresponding to an array item should be interpreted. It describes the following aspects of the data: Type of the data (integer, float, Python object, etc.) Size of the data (how many bytes is in e.g. the integer)

https://runebook.dev › fr › docs › numpy › user › basics.types

NumPy - Data types [fr] - Runebook.dev

Les types numériques NumPy sont des instances d'objets dtype (type de données), chacun ayant des caractéristiques uniques. Une fois que vous avez importé NumPy à l'aide de >>> import numpy as np , les types sont disponibles sous la forme np.bool_ , np.float32 , etc.

https://docs.scipy.org › doc › numpy-1.8.1 › user › basics.types.html

Data types — NumPy v1.8 Manual - SciPy.org

There are 5 basic numerical types representing booleans (bool), integers (int), unsigned integers (uint) floating point (float) and complex. Those with numbers in their name indicate the bitsize of the type (i.e. how many bits are needed to represent a single value in memory).

https://www.w3schools.com › python › numpy › numpy_data_types.asp

NumPy Data Types - W3Schools

Learn how to use and manipulate data types in NumPy, a Python library for scientific computing. Find out the characters, properties and methods for creating and converting arrays with different data types.

https://runebook.dev › fr › docs › numpy › reference › arrays.dtypes

NumPy - dtype object [fr] - Runebook.dev

Pour décrire le type de données scalaires, il existe plusieurs built-in scalar types dans NumPy pour diverses précisions d'entiers, de nombres à virgule flottante, etc. Un élément extrait d'un tableau, par exemple par indexation, sera un objet Python dont le type est le type scalaire. associé au type de données du tableau.

https://www.programiz.com › python-programming › numpy › datatypes

NumPy Data Types (With Examples) - Programiz

Learn how to specify, check, and convert the data types of NumPy arrays using built-in functions and parameters. See examples of different numeric data types and their bit sizes.

https://medium.com › @pritioli › essential-numpy-data-types-a-must-know-guide-ad3657f708b7

Essential NumPy Data Types: A Must-Know Guide - Medium

NumPy extends the range of available numerical types well beyond native Python (data type in Python: strings, integer, float, boolean, complex…..). In this section, we’ll explore the diverse...