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

📄 estimatecyclicfrequencies.m

📁 matlab的源程序
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -