-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpreprocess_data.m
More file actions
28 lines (25 loc) · 823 Bytes
/
preprocess_data.m
File metadata and controls
28 lines (25 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%
%File name: preprocess_data.m
%
%
% Programmed by Oloruntoba Oluwabunmi
% Last revised: Sept 2019
% Reference: Oloruntoba O., Cosma G., Liotta A. (2019). Clan-based Cultural Algorithm for
% Feature Selection. In: IEEE International Conference on Data
% Minning (ICDM 2019), November 8-11, 2019, Beijing China
%
% Copyright (c) 2019 Oloruntoba Oluwabunmi<bunmiotoba@gmail.com>.
%
%
% Script to process the datasets to be used.
% This script is called at the start of the program.
% All data preprocessing is performed here before the CCA algorithm starts
%
%
% As a sample, the MATLAB humanactivity sample dataset is used.
%% load the data
load humanactivity.mat;
X = feat;
T = actid;
% remove all unnecessary data variables
clearvars featlabels feat Description actnames actid;