代码搜索:AUTOCORRELATION
找到约 1,073 项符合「AUTOCORRELATION」的源代码
代码结果 1,073
www.eeworm.com/read/288430/8633296
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
% 自相关函数下降到初始值的
www.eeworm.com/read/284985/8879752
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
ACF = ACF(2:end)
www.eeworm.com/read/384096/8900260
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
% 自相关函数下降到初始值的
www.eeworm.com/read/284606/8913782
m autocorrelation.m
function y = autocorrelation(m);
load mysave;
n = length(x);
temp = 0;
for i = 1:n
z = i+m;
if (z > 0) & (z < n)
temp = temp + x(i)*x(z);
end
end
y = temp/n;
www.eeworm.com/read/383610/8932724
m autocorrelation.m
function [ output ] = autocorrelation( input )
%Get and Plot auto-correlation of the input array.
%n = length(input);
r = circonvt(input,fliplr(input),length(input));
%k = (-n):n';
%stem(k,r);
stem(r
www.eeworm.com/read/364017/9925761
p autocorrelation.p
www.eeworm.com/read/359579/10135540
m autocorrelation.m
function [tau] = AutoCorrelation(X,maxLags,IsPlot)
% 自相关法求混沌时间序列重构的时间延迟
% 输入参数:X 混沌时间序列
% maxLags 最大时间延迟
% 输出参数:tau 时间延迟
ACF = autocorr(X,maxLags); % 求自相关函数
% 自相关函数下降到初始值的
www.eeworm.com/read/426020/10293843
cpp autocorrelation.cpp
#include
#include
void kkfft(double pr[],double pi[],int n,int k,double fr[],double fi[],int l, int il)//快速傅立叶变换
{ int it,m,is,i,j,nv,l0;
double p,q,s,vr,vi,podd
www.eeworm.com/read/426020/10293848
opt autocorrelation.opt
www.eeworm.com/read/426020/10293854
plg autocorrelation.plg
Build Log
--------------------Configuration: autocorrelation - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME