坐标如何储在一个名为 coords 的 NumPy 数组中
时间: 2023-06-14 10:07:02 浏览: 136
Canny_matlab.rar_canny_canny matlab_connect_get_coords_matlab中ge
5星 · 资源好评率100%
可以通过以下代码将坐标储存在名为 `coords` 的 NumPy 数组中:
``` python
import numpy as np
# 假设有一组坐标 x、y、z,分别储存在列表 x_list、y_list、z_list 中
x_list = [1, 2, 3]
y_list = [4, 5, 6]
z_list = [7, 8, 9]
# 将坐标转换成 NumPy 数组
coords = np.array([x_list, y_list, z_list])
# 输出 coords 数组
print(coords)
```
输出结果为:
```
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
```
其中,`coords` 数组的每一行代表一个坐标点,第一行为 x 坐标,第二行为 y 坐标,第三行为 z 坐标。
阅读全文