资源简介
对数据进行活动窗口均值处理,根据其均值进行数据分类,具有时间连贯性。matlab代码
代码片段和文件信息
%——————————
%——————————时间序列分段PAA算法程序————————————
clear;
clc;
%——————————————参数输入————————————%
A=input(‘Please input the traffic date like [6:00 6:30 ··· ]\n A=‘); %按照时间顺序输入交通流数据
[a A_longth]=size(A);%采集交通流数据组数
fprintf(‘The longth of the input is:%5.4g\n‘A_longth);%输出交通流数据组数
fprintf(‘Attention win_width>slide_steps\n‘);
M=input(‘Please input the width and the slide step of the slide window\n [win_width slide_steps]=‘);%输入滑动窗口大小及滑动步长
%——————————————参数处理————————————————%
win_width=M(1);%窗口大小
slide_steps=M(2);%滑动步长
- 上一篇:matlab通过腐蚀与膨胀提取图像物体边缘
- 下一篇:MATLAB桶形变换
评论
共有 条评论