I just realized I replied to Krysta instead of the list:<br><br>If you just want to apply the window to an epoch, you can use the build
in MATLAB function HANN.  Here's a simple example of how you might do
that.<br><br>% sample code to apply and plot the the first epoch at the first channel after applying a <span class="il">hanning</span> window<br>
<br>% extract epoch 1 from channel 1<br>data = EEG.data(1,:,1);<br>% generate the <span class="il">hanning</span> window<br>hwin = hann(length(data));<br>% apply the <span class="il">hanning</span> window<br>hdata = data.*h';<br>
% create a new figure an plot the <span class="il">hanning</span>-windowed data<br>
figure;<br>plot(hdata)<br><br>-Keith<br>