Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在不使用任何循环或以最低成本的情况下将所有对角线以上(不是对角线)的元素复制到对角线以下。所以,复制后的矩阵会变成一个对称矩阵: 即对于所有i, j: A(i,j)=A(j,i)。
i
j
A(i,j)=A(j,i)
谢谢。
使用triu命令:
triu
>> symMat = triu( A, 0 ) + triu( A, 1 ).';
此命令将保持对角线A不变。
A