?? removejacob.m
字號:
function Jh=RemoveJacob(J,L);%RemoveJacob Removes the derivatives corresponding to the current carrying electrodes% Function Jh=RemoveJacob(J,L);% removes all the derivatives that correspond to the% current carrying electrodes.% Change the voltages accordingly, see RemoveVolt.m.%% INPUT% J = Jacobian% L = number of electrodes% OUTPUT% Jh = new Jacobian[rJ,cJ]=size(J);J=reshape(J,L,rJ/L*cJ);kk=1;p=1;for jj=1:cJ for ii=1:L J(:,p)=[J(kk:L,p);J(1:kk-1,p)]; kk=kk+1;p=p+1;endkk=1;endJ([1 2 L],:)=[];Jh=reshape(J,(L-3)*L,cJ);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -