degree_of_cyclostationarity.m

来自「一些循环平稳子程序」· M 代码 · 共 24 行

M
24
字号
function d=degree_of_cyclostationarity(R)%% DEGREE_OF_CYCLOSTATIONARITY%              Compute the degrees of cyclostationarity of a signal%              from its cyclic autocorrelation%% USAGE%              d=degree_of_cyclostationarity(R)%              %              R is the cyclic-autocorrelation of a signal%              %              d is a vector containing all degrees of cyclostationarity%              for integer multiples of the frequency used to obtain R% File: degree_of_cyclostationarity.m% Last Revised: 25/11/97% Created: 25/11/97% Author: Andrew C. McCormick% (C) University of Strathclyded=sum(abs(R).^2)/sum(abs(R(:,1)).^2);  

⌨️ 快捷键说明

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