tensor5op.m

来自「计算动力学系统的分岔图」· M 代码 · 共 13 行

M
13
字号
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 + =
减小字号Ctrl + -
显示快捷键?