在matlab中有一个上三角矩阵怎么将其对称位置为倒数

问题描述:

在matlab中有一个上三角矩阵怎么将其对称位置为倒数

clear;clc
a=tril(magic(6),0);
b=1./tril(a,-1)';
b(b==inf)=0;
sym(a+b) % a+b