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

Understanding Edge Computing: The Future of IoT

Understanding Edge Computing: The Future of IoT

At the beginning of 2018, our social circles were flooded with discussions on Artificial Intelligence and Blockchain. However, let’s not forget that the next big wave will inevitably involve the Internet of Things (IoT). In this era of interconnected devices and intelligent systems, smart IoT empowers everything with perception through networks, forming vast amounts of … Read more