代码搜索:盒维数

找到约 10,000 项符合「盒维数」的源代码

代码结果 10,000
www.eeworm.com/read/384096/8900069

m main_boxdimension_ts.m

% 计算时间序列的盒维数 - 主函数 clc clear all close all %-------------------------------------------------------------------------- % produce the FBM time series,Set parameter H to 0.6 and sample length rand('
www.eeworm.com/read/282799/9059803

m main_boxdimension_ts.m

% 计算时间序列的盒维数 - 主函数 clc clear all close all %-------------------------------------------------------------------------- % produce the FBM time series,Set parameter H to 0.6 and sample length rand('
www.eeworm.com/read/359579/10135476

m main_boxdimension_ts.m

% 计算时间序列的盒维数 - 主函数 clc clear all close all %-------------------------------------------------------------------------- % produce the FBM time series,Set parameter H to 0.6 and sample length rand('
www.eeworm.com/read/309669/13666636

m main_boxdimension_ts.m

% 计算时间序列的盒维数 - 主函数 clc clear all close all %-------------------------------------------------------------------------- % produce the FBM time series,Set parameter H to 0.6 and sample length rand('
www.eeworm.com/read/406123/11449108

txt 一维fft和二维fft的实现程序.txt

//以FFT.h文件的形式实现一维和二维快速FFT变换; #include // complex using namespace std; typedef complex Comp; // 复数类型定义 const float _2PI_ = 2.0f * 3.14159265f; // 常数2PI定义 const int MA
www.eeworm.com/read/140075/13111266

m convert2to10.m

function y=convert2to10(x) % 本函数实现二进制数到十进制数的转换 %x为输入二进制数,y为输出十进制数 y=0; len =length(x); for i=1:len y = y+ x(i)*2^(i-1); end
www.eeworm.com/read/306386/13745547

m convert2to10.m

function y=convert2to10(x) % 本函数实现二进制数到十进制数的转换 %x为输入二进制数,y为输出十进制数 y=0; len =length(x); for i=1:len y = y+ x(i)*2^(i-1); end