Newer
Older
masterarbeit / usedMcode / evaluation.m
@JPH JPH on 18 Oct 2016 1 KB evaluation
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