Things To Know

While working, use this tab as a dictionary because the NumPy Glossary provides clear definitions for terms you'll encounter in tutorials and error messages.

You'll define the fundamental components:

dtype (the type of values stored),

shape and axis (the size of the array and the direction in which you are working),

ndarray (the main array object). It explains practical concepts like...

  • ufuncs (fast element-wise functions) and
  • broadcasting (how different shapes can still cooperate),
  • as well as performance terms like contiguous memory and strides.
  • It also discusses...
    • array memory order (C vs. Fortran),
    • boolean masks and advanced indexing (methods to choose data),
    • views vs. copies (why a slice may alter the original).

The fastest way to convert vocabulary into comprehension is to keep the glossary open while you read the documents.

For more specific details please click on the following link