摘要: 原理:暂缺 1 /* 2 3 App : MK.cpp 4 5 This is a C++ program for 6 detecting abrupt climatic change 7 by using Mann-Kendall technique. 8 9 BY : ZXD10 Date : January 10, 201411 12 */13 14 #define _CRT_SECURE_NO_WARNINGS15 16 #include 17 #include 18 19 #define N_SIZE 5120 // The N_SIZE is size of sample,2... 阅读全文
posted @ 2014-01-15 01:27 活在二次元的伪触 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: 原理(暂缺) 1 /* 2 3 App : MTT.cpp 4 5 This is a C++ program for 6 detecting abrupt climatic change 7 by using moving t-test technique. 8 9 BY : ZXD10 Date : January 9, 201411 12 */13 14 #define _CRT_SECURE_NO_WARNINGS15 16 #include 17 #include 18 19 #define N_SIZE 5120 // The N_SIZE is size of sample... 阅读全文
posted @ 2014-01-15 01:19 活在二次元的伪触 阅读(2935) 评论(1) 推荐(0) 编辑
摘要: 一元线性回归方程:倾向值:回归常量:相关系数协方差(Covariance)的计算公式:C++源代码: 1 /* 2 3 App : LR.cpp 4 5 This is a C++ program 6 for linear regression 7 between x and t(time or year), 8 i.e. x = a + b * t 9 10 BY : ZXD 11 Date : January 9, 2014 12 13 */ 14 15 #define _CRT_SECURE_NO_WARNINGS 16 17 #include 18 #i... 阅读全文
posted @ 2014-01-15 00:25 活在二次元的伪触 阅读(826) 评论(0) 推荐(0) 编辑