# 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)
# welcome to softhunt.net
# Python program explaining
# numpy.atleast_1d() 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_1d(in_arr)
print ("output array :
", out_arr)
print(in_arr is out_arr)