⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 walpha.m

📁 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
💻 M
字号:
function[auv,aeo,adc,apn]=walpha(wu,wv)% WALPHA  Widely linear transform anisotropy parameters.%%   [AUV,AEO,ADC,APN]=WALPHA(WU,WV) where WU and WV are the U and V%   widely linear transforms for a complex-valued time series, returns%   the anisotropy parameters AUV, AEO, ADC, and APN defined as%%        AUV = (|WP|^2 - |WN|^2)./(|WP|^2 + |WN|^2)%%   and so forth.  See Lilly (2005) for details.%%   See also TRANSCONV.%   _________________________________________________________________%   This is part of JLAB --- type 'help jlab' for more information%   (C) 2004--2005 J.M. Lilly --- type 'help jlab_license' for details        auv=frac(abs(wu).^2-abs(wv).^2,abs(wu).^2+abs(wv).^2);[wa,wb]=wconvert(wu,wv,'pn');apn=frac(abs(wa).^2-abs(wb).^2,abs(wa).^2+abs(wb).^2);  [wa,wb]=wconvert(wu,wv,'eo');aeo=frac(abs(wa).^2-abs(wb).^2,abs(wa).^2+abs(wb).^2);[wa,wb]=wconvert(wu,wv,'dc');adc=frac(abs(wa).^2-abs(wb).^2,abs(wa).^2+abs(wb).^2);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -