23 lines
719 B
Mathematica
23 lines
719 B
Mathematica
#global trainsetPerClass = 6; #number of used trainsets for one class
|
|
global setDataDir = "/home/toni/Documents/handygames/HandyGames/daten/";
|
|
global setWindowSize = 512; #in samples per window. even integer!
|
|
global setWindowSliding = 160; #in ms - (sampling rate is 10 ms.. so numSamples*10)
|
|
global setAutocorrelationBinSize = 5;
|
|
global setPSDBinSize = 18;
|
|
global samplerateHZ = 100;
|
|
|
|
global setMagnet = false;
|
|
global setAccel = true;
|
|
global setGyro = true;
|
|
global useSignalPCA = false;
|
|
global useSignalMG = false;
|
|
|
|
global signalStart = 1510;
|
|
global signalEnd = 0.8;
|
|
|
|
global setAutoCorr = true;
|
|
global setRMS = true;
|
|
global setPSD = true;
|
|
global setStatistic = true;
|
|
global setPCA = false; #not implementend / buggy
|