You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
156 B
Python
7 lines
156 B
Python
1 year ago
|
import numpy as np
|
||
|
n1 = np.array([[1,1,1]])
|
||
|
n2 = np.array([1,1,1]).reshape(1,-1)
|
||
|
print(n2)
|
||
|
n2 = np.array([]).reshape(3,-1)
|
||
|
|
||
|
print(np.max([[1,2,3],[4,5,6]]))
|