Using MATLAB for MK Test

Using MATLAB for MK Test

The Eighth Using MATLAB for MK Test —— Complete code attached at the end Star System Author: Eighth Star System – Stone Man Email: [email protected] Read Data clc;clear;close all; load data1.mat year = data1(:,1); data = data1(:,2); Trend Test s = 0; len=size(data,1); for m=1:len-1 for n=m+1:len if data(n) > data(m) s = s+1; elseif … Read more

Performing Sliding T-Test Using MATLAB

Performing Sliding T-Test Using MATLAB

First Eight Performing Sliding T-Test Using MATLAB —— Complete Code at the End Star System Author: Eighth Star System – Stone Man Email: [email protected] Performing Sliding T-Test Using MATLAB clc;clear;close all; %% Read Data load data.mat % Read data time = data(:,1); % Time series data sw = data(:,2); % Corresponding data Sliding T-Test step … Read more