Answers for "map numpy array"

0

map numpy array

import numpy as np 
x = np.array([1, 2, 3, 4, 5])
# Obtain array of square of each element in x
squarer = lambda t: t ** 2
squares = np.array([squarer(xi) for xi in x])
Posted by: Guest on September-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language