📄 tfpm_phi.m
字号:
function phi= tfpm_phi(m, l, mp, lp, beta)% function phi= tfpm_phi(m, l, mp, lp, beta)% This file is part of the TFPM toolbox v1.0 (c)% michael.jachan@tuwien.ac.at and underlies the GPL.% % Computes the phase function.phi= (1/2+beta)*(l-lp)*mp-(1/2-beta)*lp*(m-mp);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%if(0)% TEST TEST TEST TEST TEST TEST TEST TEST TEST TEST%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%m= randn;l= randn;mp= randn;lp= randn;beta= randn;tfpm_phi(-m, -l, -mp, -lp, beta)-tfpm_phi(m, l, mp, lp, beta)tfpm_phi(m, l, m-mp, l-lp, beta)+tfpm_phi(m, l, mp, lp, -beta)tfpm_phi(m, l, mp, lp, -beta)+tfpm_phi(l, m, lp, mp, beta)%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%end;% TEST TEST TEST TEST TEST TEST TEST TEST TEST TEST%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -