📄 tensor5op.m
字号:
function tens5 =tensor5op(T,q1,q2,q3,q4,q5,nphase)
%----------------------------------------------------
% This file computes T*q1*q2*q3*q4,q5, where T is 5th derivative
% of map f on the iterate at xn.
%----------------------------------------------------
global cds
for b=1:nphase
S1=T(:,:,:,:,:,b);
BB=tensor4op(S1,q1,q2,q3,q4,nphase);
S(:,b)=BB;
end
tens5=S*q5;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -