📄 updatefemmatrix.m
字号:
function [A]=UpdateFemMatrix(Agrad,Kb,M,S,sigma);%UpdateFemMatrix Assembles the system matrix for EIT% Function [A]=UpdateFemMatrix(Agrad,Kb,M,S,sigma);% updates the system matrix A given a new conductivity vector sigma.%% INPUT% Agrad = the gradient part of the system matrix (see FemMatrix.m)% Kb,M and S = other blocks of the system matrix (see FemMatrix.m)% sigma = conductivity (or admittivity) vector%% OUTPUT% A = the updated system matrix rAgrad=sqrt(size(Agrad,1));A=[reshape(Agrad*sigma,rAgrad,rAgrad)+Kb,M;M.',S];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -