matlab中dot(norm(A))代表什么意思

问题描述:

matlab中dot(norm(A))代表什么意思
1个回答 分类:综合 2014-11-12

问题解答:

我来补答
首先norm(A)是求矩阵或者向量A的范数
例如:
>> A = [3 4];
>> norm(A)
ans =
5
然后dot()是向量乘法,
DOT(A,B) is the same as A'*B
例如:
>> A = [3 4];
>> B = [1 1];
>> C = dot(A,B)
C =
7
所以你的dot(norm(A))应该会少了一个dot参数,只能是相当于norm(A)
会有以下错误:
Input argument "b" is undefined.
 
 
展开全文阅读
剩余:2000