Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy delete Function Example Deletion from 1D array

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

import numpy as np

#Working on 1D
arr = np.arange(5)
print("arr : 
", arr)
print("Shape : ", arr.shape)

# deletion from 1D array

object = 2
a = np.delete(arr, object)
print("
deleteing {} from array : 
 {}".format(object,a))
print("Shape : ", a.shape)

object = [1, 2]
b = np.delete(arr, object)
print("
deleteing {} from array : 
 {}".format(object,a))
print("Shape : ", a.shape)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #delete #Function #Example #Deletion #array
ADD COMMENT
Topic
Name
2+7 =