You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
242 B
11 lines
242 B
1 year ago
|
import numpy as np
|
||
|
|
||
|
def x1_1(): # 随机给出1000个点坐标,赋值给xyMap,<class 'numpy.ndarray'>
|
||
|
shape = [1000, 2]
|
||
|
xyMap = np.random.randint(-200, 200, size=shape)
|
||
|
return xyMap
|
||
|
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
print(x1_1())
|