estimatecyclicfrequencies.m
来自「matlab的源程序」· M 代码 · 共 29 行
M
29 行
function [ Freq,R ] = EstimateCyclicFrequencies(y)% [ Freq,R ] = EstimateCyclicFrequencies(y)%% This function return a criteria which has pic at the cyclic frequencies.%%% Author : Pierre JALLON% More information : http://www-syscom.univ-mlv.fr/~jallon/toolbox.php%% Date of creation : 04/23/2005% Date of last modification : 04/27/20005addpath(sprintf('%s/CyclicFrequenciesEstimation/',pwd));if (size(y,1)>size(y,2)) y = y.'; end[ Freq,R ] = ComputeRalpha(y,10);[ Freq,R ] = Blanchit(Freq,R);rmpath(sprintf('%s/CyclicFrequenciesEstimation/',pwd));I = floor(0.50*length(R)):length(R);plot(Freq(I),R(I));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?