⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outlier_global.m

📁 Spatial Outlier Detection Algorithm by Matlab
💻 M
字号:
means = mean(data(:,2));
stds = std(data(:,2));

norm_test = (data(:,2) - means)/stds;

figure;
hold on;
plot(x_index, norm_test, 'ro','LineWidth',2,...
                'MarkerEdgeColor','k',...
                'MarkerFaceColor','b',...
                'MarkerSize',6);
title('Global Outlier Detection','fontsize',20);
xlabel('Label of Location','fontsize',18);
ylabel('Global Normal Test','fontsize',18);
set(gca,'xtick',[1:30]);
grid on;
text(x_index(12)-3,norm_test(12),'G \rightarrow','FontSize',14);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -