gpt4 book ai didi

matlab - 在Matlab中,为什么整个矩阵的L2范数的平方与行/列的L2范数的平方和不匹配?

转载 作者:行者123 更新时间:2023-11-30 08:53:47 24 4
gpt4 key购买 nike

矩阵的 L2-范数的平方应与所有行/列的 L2-范数的平方和相匹配。引用:http://mathworld.wolfram.com/L2-Norm.html

考虑 Matlab 中的随机 (4,3) 矩阵

Computed using a = rand(4,3)

0.0400 0.4357 0.9144
0.5551 0.9048 0.5755
0.1675 0.1772 0.3001
0.4189 0.0403 0.2407

整个矩阵的L2范数为:

norm(a1)^2 = 2.7806

L2 列平方和范数:

norm(a1(:,1))^2 + norm(a1(:,2))^2 + norm(a1(:,3))^2 = 2.9337

行平方和的 L2 范数:

norm(a1(1,:))^2 + norm(a1(2,:))^2 + norm(a1(3,:))^2 = 2.2214

这在 Python (numpy) 中匹配:

a = np.random.rand(4,3)
array([[ 0.91033221, 0.9082118 , 0.6864961 ],
[ 0.15157616, 0.70232112, 0.06709103],
[ 0.61008197, 0.15648347, 0.02693866],
[ 0.53646277, 0.22186601, 0.77530143]])

整个矩阵的L2范数

numpy.linalg.norm(a)**2 = 3.9810836846898465

L2 范数行平方和:

numpy.linalg.norm(a[0])**2  + numpy.linalg.norm(a[1])**2  + 
numpy.linalg.norm(a[2])**2 + numpy.linalg.norm(a[3])**2 = 3.9810836846898465

Matlab 是否没有以更高的精度进行运算,从而累计累加整个矩阵范数和行列方面的差异?

Matlab 中是否有任何选项可以让我正确地执行此操作?

最佳答案

Matlab 对矩阵使用与向量不同的范数。来自 norm 的 Matlab 文档:

n = norm(X) returns the 2-norm or maximum singular value of matrix X, which is approximately max(svd(X)).

因此,要获得与行和列计算类似的结果,您必须对矩阵进行矢量化。

M =[0.0400, 0.4357, 0.9144;
0.5551, 0.9048, 0.5755;
0.1675, 0.1772, 0.3001;
0.4189, 0.0403, 0.2407 ];

norms = [];
norms(end+1) = norm(M)^2; % 2.46
norms(end+1) = norm(M(:))^2; % 2.87
norms(end+1) = norm(M(1,:))^2 + norm(M(2,:))^2 + norm(M(3,:))^2 + norm(M(4,:))^2; % 2.87
norms(end+1) = norm(M(:,1))^2 + norm(M(:,2))^2 + norm(M(:,3))^2; % 2.87

norms

关于matlab - 在Matlab中,为什么整个矩阵的L2范数的平方与行/列的L2范数的平方和不匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49064372/

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