首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
python 矢量标准化函数 normalize
python 矢量标准化函数 normalize
tech
2023-09-11
95
def
normalize
(
v
=
[
0
,
1
,
1
]
)
:
# 矢量标准化函数 normalize
length
=
lambda
v
:
(
v
[
0
]
*
v
[
0
]
+
v
[
1
]
*
v
[
1
]
+
v
[
2
]
*
v
[
2
]
)
**
0.5
return
(
v
[
0
]
/
length
(
v
)
,
v
[
1
]
/
length
(
v
)
,
v
[
2
]
/
length
(
v
)
)
转载请注明原文地址:https://tech.qufami.com/read-12556.html
最新回复
(
0
)