Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy atleast_3d Function Example 2

# welcome to softhunt.net
# Python program explaining
# numpy.atleast_3d() function

import numpy as np

my_list = [[1, 2, 3],
		[4, 5, 6]]

print ("Input list : ", my_list)
	
out_arr = np.atleast_3d(my_list)
print ("output array : 
", out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #Function #Example
ADD COMMENT
Topic
Name
9+5 =