User Tools

Site Tools


gsr_data_analysis

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
gsr_data_analysis [2010/06/18 21:19] – removed rounding of onsets, need to resample is gone! jochengsr_data_analysis [2010/06/18 21:23] – changed from RawData to ChannelData to cope with resampling jochen
Line 89: Line 89:
 <code matlab GSR_acq_stimonsets.m>% all stimuli onsets (use 1 + to cope for the fact that the <code matlab GSR_acq_stimonsets.m>% all stimuli onsets (use 1 + to cope for the fact that the
 % first value in diff rather codes the second sample in the data! % first value in diff rather codes the second sample in the data!
-all_onsets = 1 + find(diff(gsr.RawData(8, :)') > 0);+all_onsets = 1 + find(diff(gsr.ChannelData(8)) > 0);
  
 % now split into three conditions % now split into three conditions
-neu = all_onsets(gsr.RawData(2, all_onsets) > 0); +neu = all_onsets(gsr.ChannelData(2, all_onsets) > 0); 
-neg = all_onsets(gsr.RawData(3, all_onsets) > 0); +neg = all_onsets(gsr.ChannelData(3, all_onsets) > 0); 
-rea = all_onsets(gsr.RawData(4, all_onsets) > 0);</code>+rea = all_onsets(gsr.ChannelData(4, all_onsets) > 0);</code>
  
 As window length for the inspection of the GSR data, we choose 15 seconds, so in the resolution of the resampled data that means 1,500 samples. As window length for the inspection of the GSR data, we choose 15 seconds, so in the resolution of the resampled data that means 1,500 samples.
gsr_data_analysis.txt · Last modified: 2010/06/18 23:22 by jochen