?? tensor4op.m
字號:
function tens4 =tensor4op(T,q1,q2,q3,q4,nphase)
%----------------------------------------------------
% This file computes T*q1*q2*q3*q4, where T is 4th derivative
% of map f at xn.
%----------------------------------------------------
global cds
for b=1:nphase
S1=T(:,:,:,:,b);
BB=tensor3op(S1,q1,q2,q3,nphase);
S(:,b)=BB;
end
tens4=S*q4;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -