In [1]:
clc;clear;close;
result_TDNN = xlsread('../result/result_TDNN.xlsx');
In [2]:
min_delay = min(result_TDNN(:, 3));
max_delay = max(result_TDNN(:, 3));
% disp(['最小的延迟时间为: ' num2str(min_delay)]);
% disp(['最大的延迟时间为: ' num2str(max_delay)]);
统计各个延迟时间的结果
对所有存在的延迟时间进行遍历
In [15]:
for idx = min_delay : 30
result_time(idx, :) = mean(result_TDNN(result_TDNN(:, 3) == idx, :), 1);
end
In [16]:
plot(result_time(:, 7))
In [17]:
plot(result_time(:, 6))
In [21]:
plot(result_time(:, 8))
In [19]:
plot(result_time(:, 10))
In [8]:
plot(mean(result_time(:, 12:20)))
In [14]:
img = imread('../img/K-means_Clustering_Results.png');
image(img)
In [ ]: