Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Member-only story

NumPy Arrays

Mario Rodriguez
Level Up Coding
Published in
4 min readFeb 1, 2023

--

numpy arrays
Photo by Joshua Sortino on Unsplash

Numpy is a powerful library for working with arrays in Python. It provides a variety of functions and methods for creating, indexing, slicing, and manipulating arrays. In this manual, we will cover the basics of creating arrays, indexing and slicing arrays, array operations and methods, and broadcasting and reshaping arrays.

Creating Arrays

There are several ways to create arrays in Numpy. The most common way is to use the np.array() function, which takes a list or other iterable as an argument and returns an array. For example:

Numpy is a powerful library for working with arrays in Python. It provides a variety of functions and methods for creating, indexing, slicing, and manipulating arrays. In this manual, we will cover the basics of creating arrays, indexing and slicing arrays, array operations and methods, and broadcasting and reshaping arrays.

Creating Arrays
There are several ways to create arrays in Numpy. The most common way is to use the np.array() function, which takes a list or other iterable as an argument and returns an array. For example:

import numpy as np

# create a 1-dimensional array from a list
a = np.array([1, 2, 3, 4, 5])
print(a) # [1 2 3 4 5]

# create a 2-dimensional array from a list of lists
b = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print(b)
# [[1 2 3]
# [4 5 6]
# [7 8 9]]

You can also use the np.zeros() function. This function creates an array of a given shape and fills it with zeros. For example:

b = np.zeros((3, 4))
print(b)
#[[0. 0. 0. 0.]
# [0. 0. 0. 0.]
# [0. 0. 0. 0.]]

The function np.ones() creates an array of a given shape and fills it with ones. For example:

c = np.ones((2, 3))
print(c)
# [[1. 1. 1.]
# [1. 1. 1.]]

The function np.arange() creates an array with a range of numbers, similar to the range() function. For example:

d = np.arange(5) # [0, 1, 2, 3, 4]

The function np.linspace()creates an array of evenly spaced numbers over a specified interval. For example:

e = np.linspace(0, 10, 5) # [0, 2.5, 5, 7.5, 10]

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

--

--

Written by Mario Rodriguez

Communication systems engineer | Python developer | Signal processing | AI | Machine learning | Join me in https://mario-rodriguez.medium.com/membership

Write a response