• 大小: 1KB
    文件类型: .m
    金币: 2
    下载: 2 次
    发布日期: 2021-05-12
  • 语言: Matlab
  • 标签: PAA  

资源简介

对数据进行活动窗口均值处理,根据其均值进行数据分类,具有时间连贯性。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);%滑动步长

评论

共有 条评论

相关资源