资源简介
permutationentropy.rar
代码片段和文件信息
function MPE = MPerm(XmtScale)
% Calculate the Multiscale Permutation Entropy (MPE)
% Input: X: time series;
% m: order of permuation entropy
% t: delay time of permuation entropy
% Scale: the scale factor
% Output:
% MPE: multiscale permuation entropy
%Ref: G Ouyang J Li X Liu X Li Dynamic Characteristics of Absence EEG Recordings with Multiscale Permutation % % Entropy Analysis Epilepsy Research doi: 10.1016/j.eplepsyres.2012.11.003
% G Ouyang C Dang X Li Complexity Analysis of EEG Data with Multiscale Permutation Entropy Advances in % % Cognitive Neurodynamics (II) 2011 pp 741-745
MPE=[];
for j=1:Scale
Xs = Multi(Xj);
PE = pec(Xsmt);
MPE=[MPE PE];
end
function M_Data = Multi(DataS)
% generate the consecutive coarse-grained time series
% Input: Data: time series;
% S: the scale factor
% Output:
% M_Data: the coarse-grained time series at the scale factor S
L = length(Data);
J = fix(L/S);
for i=1:J
M_Data(i) = mean(Data((i-1)*S+1:i*S));
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1329 2012-11-21 07:46 permutation entropy\license.txt
文件 1178 2012-11-21 20:38 permutation entropy\MPerm.m
文件 1115 2013-03-15 09:31 permutation entropy\pec.m
目录 0 2015-10-22 21:09 permutation entropy
----------- --------- ---------- ----- ----
3622 4
- 上一篇:idea的Setting(2017-08-04)
- 下一篇:CST曲线拟合翼型
相关资源
- 百度云盘.txt
- VoiceRecorder.rar
- ws.zip
- 4360GoogleAVA数据集百度云地址及相关介
- arithmetic.rar
- 省市区商圈数据库.rar
- 多目标跟踪MOT_2DMOT2015数据集.txt
- 王者荣耀资源.txt
- licenceForVivado.7z
- Shapes.rar
- 上位机.txt
- 各种网站模板87G资源.txt
- Web前端面试指南与高频考题解析掘金
- 新建文本文档.zip
- 韩顺平ssm视频百度云链接.txt
- 程序员电子书包.txt
- 百度云分享码.txt
- 网页模板.txt
- Quartus17.1.txt
- 疫情地图.zip
- 下载网盘.txt191763
- DDOSAttack.zip
- 29期-淘淘商城-百度云盘.txt
- xiangmu.txt
- 尚硅谷雷丰阳老师尚筹网项目视频.
- 2018年传智播客前端全部视频.txt
- UE4视频教程百度网盘.txt
- kaggle猫狗大战数据集.txt
- 20套计算机专业毕业设计.txt
- Unity3D5.x入门到精通资源.txt
评论
共有 条评论