去评论
推扬网

王玲:matlab 中norm函数是什么意思

admin
2020/08/10 19:18:19

李孟刚的回答:

1. norm函数可计算几种不同类型的矩阵范数,根据p的不同可得到不同的范数。 2. MATLAB是美国MathWorks公司出品的商业数学软件,用于算法开发、数据可视化、数据分析以及数值计算的高级技术计算语言和交互式环境,主要包括MATLAB和Simulink两大部分。 3. 范数,是指设X是数域K上线性空间,称║˙║为X上的范数(norm)。

周永波的回答:

范数: NORM Matrix or vector norm. For matrices... NORM(X) is the largest singular value of X, max(svd(X)). NORM(X,2) is the same as NORM(X). NORM(X,1) is the 1-norm of X, the largest column sum, = max(sum(abs(X))). NORM(X,inf) is the infinity norm of X, the largest row sum, = max(sum(abs(X'))). NORM(X,'fro') is the Frobenius norm, sqrt(sum(diag(X'*X))). NORM(X,P) is available for matrix X only if P is 1, 2, inf or 'fro'. For vectors... NORM(V,P) = sum(abs(V).^P)^(1/P). NORM(V) = norm(V,2). NORM(V,inf) = max(abs(V)). NORM(V,-inf) = min(abs(V)).

宏得利的回答:

norm(A,'fro')是F-范数,norm(A,inf)是∞-范数,norm(A,1)1-范数

吴凯的回答:

是范数的意思