Contoh fungsi Python Numpy ATLEAST_2D saat input berada dalam dimensi tinggi
# 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 :\n ", in_arr)
out_arr = np.atleast_2d(in_arr)
print ("output array :\n ", out_arr)
print(in_arr is out_arr)
Outrageous Ostrich