%% Reset Situation clear; close all; warning off; clc; %% Add paths addpath('./lib'); % dependencies addpath('./methods'); % FS methods %% Load Data [in,out]=Load_data(); sample_nu=size(in,1); in_nu=size(in,2); out_nu=size(out,2); feat_nu=100; in(isnan(in))=0; report(in,out,feat_nu,1); %save('report/reps.mat','rept')