gpt4 book ai didi

r - 如何计算R中向量的欧几里得范数?

转载 作者:行者123 更新时间:2023-12-03 07:35:36 25 4
gpt4 key购买 nike

我尝试了norm,但我认为它给出了错误的结果。 (c(1, 2, 3) 的范数是 sqrt(1*1+2*​​2+3*3),但它返回 6..

x1 <- 1:3
norm(x1)
# Error in norm(x1) : 'A' must be a numeric matrix
norm(as.matrix(x1))
# [1] 6
as.matrix(x1)
# [,1]
# [1,] 1
# [2,] 2
# [3,] 3
norm(as.matrix(x1))
# [1] 6

有谁知道R中计算向量范数的函数是什么?

最佳答案

norm(c(1,1), type="2")     # 1.414214
norm(c(1, 1, 1), type="2") # 1.732051

关于r - 如何计算R中向量的欧几里得范数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10933945/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com