Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy atleast_2d Function Example when inputs are in high dimension

# welcome to softhunt.net
# Python program explaining
# numpy.atleast_2d() function
# when inputs are in high dimension

import numpy as np

in_arr = np.arange(9).reshape(3, 3)
print ("Input array :
 ", in_arr)

out_arr = np.atleast_2d(in_arr)
print ("output array :
 ", out_arr)
print(in_arr is out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #Function #Example #inputs #high #dimension
ADD COMMENT
Topic
Name
4+5 =