Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy insert Function Example Working with Scalars

# welcome to softhunt.net
# Python Program illustrating
# numpy.insert()

import numpy as np

# Working on 2D array
arr = np.arange(12).reshape(3, 4)
print("2D arr : 
", arr)
print("Shape : ", arr.shape)

# Working with Scalars
a = np.insert(arr, [1], [[6],[9],], axis = 0)
print("
Array after insertion : 
", a)
print("Shape : ", a.shape)

# Working with Scalars
a = np.insert(arr, [1], [[8],[7],[9]], axis = 1)
print("
Array after insertion : 
", a)
print("Shape : ", a.shape)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #insert #Function #Example #Working #Scalars
ADD COMMENT
Topic
Name
6+6 =