Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 python 新手。
我有 3d 数据点,比如 x 范围从(118 到 123),y 范围从(0 到 10),z 范围从(-4 到 4)。
因此,使用这些数据点,如何使用 python 计算表面积(Axyz)。
任何帮助都是感激的。
如果您知道如何在给定高度、宽度和深度的情况下以数学方式计算表面,您需要做的就是从元组中提取这些参数 - 使用元组解包:
x_from, x_to = (118, 123) y_from, y_to = (0, 10) z_from, z_to = (-4, 4)
现在
height = y_to - y_from
等等