Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy atleast_1d Function Example

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

import numpy as np
num = 15

print ("Input number : ", num)

	
out_arr = np.atleast_1d(num)
print ("output 1d array from input number : ", out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #Function #Example
ADD COMMENT
Topic
Name
9+2 =