diff --git a/evaluation.mat b/evaluation.mat new file mode 100644 index 0000000..167fa78 --- /dev/null +++ b/evaluation.mat Binary files differ diff --git a/text/TODO.txt b/text/TODO.txt index 38b25f0..6a0a58d 100644 --- a/text/TODO.txt +++ b/text/TODO.txt @@ -81,6 +81,7 @@ Intro nur Motivation, Rest in II +via passt so? pburg, butterworth - wie ausführlich? EMG - usage in science Bilder aus Paper zu Daten verwenden? diff --git a/usedMcode/evaluation.m b/usedMcode/evaluation.m new file mode 100644 index 0000000..06a3d01 --- /dev/null +++ b/usedMcode/evaluation.m @@ -0,0 +1,28 @@ +load('/home/jph/Uni/masterarbeit/evaluation.mat') + +meanAccurancys.EEG.(sprintf('%s',name))=mean(meanAccurancysEEG); +meanAccurancys.EMG.(sprintf('%s',name))=mean(meanAccurancysEMG); +meanAccurancys.LF.(sprintf('%s',name))=mean(meanAccurancysLF); + +correlations.EEG.Autoenc.(sprintf('%s',name))=mean(correlationEEGautoenc); +correlations.EEG.PCA.(sprintf('%s',name))=mean(correlationEEGpca); +correlations.EEG.NNMF.(sprintf('%s',name))=mean(correlationEEGnnmf); +correlations.EEG.kin.(sprintf('%s',name))=mean(correlationEEGkin); + +correlations.EMG.Autoenc.(sprintf('%s',name))=mean(correlationEMGautoenc); +correlations.EMG.PCA.(sprintf('%s',name))=mean(correlationEMGpca); +correlations.EMG.NNMF.(sprintf('%s',name))=mean(correlationEMGnnmf); +correlations.EMG.kin.(sprintf('%s',name))=mean(correlationEMGkin); + +correlations.LF.Autoenc.(sprintf('%s',name))=mean(correlationLFautoenc); +correlations.LF.PCA.(sprintf('%s',name))=mean(correlationLFpca); +correlations.LF.NNMF.(sprintf('%s',name))=mean(correlationLFnnmf); +correlations.LF.kin.(sprintf('%s',name))=mean(correlationLFkin); + +correlations.EEG.pos.(sprintf('%s',name))=mean(correlationEEGpos); +correlations.EMG.pos.(sprintf('%s',name))=mean(correlationEMGpos); +correlations.LF.pos.(sprintf('%s',name))=mean(correlationLFpos); + + +save('/home/jph/Uni/masterarbeit/evaluation.mat','meanAccurancys','correlations') +clear