- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
EEGlab_time_frequency_Delorme
Time-Frequency analysis of
biophysical time series
? Arnaud Delorme
CERCO, CNRS, France SCCN, UCSD, La Jolla, USA
Frequency analysis
1 second
4-7 Hz Theta
9-11 Hz Alpha
18-21 Hz Beta
30-60 Hz Gamma
0.5-2 Hz Delta
? synchronicity of cell
excitation determines
amplitude and rhythm
of the EEG signal
Spectral phase and amplitude
Real
Imaginary
Real
I
m
a
g
.
Fk(f,t)
Real
I
m
a
g
.
Real
Imaginary
Spectral phase and amplitude
Fk(f,t)
function [a,b] = dft (y)
% DFT - The Discrete Fourier Transform
% [a, b] = DFT (y)
% a, b are the cosine and sine components
n = length (y);
t = 2*pi*(0:n-1)/n;
f = 2.0 / n;
for j = 0:n2
cs = cos (j * t);
ss = sin (j * t);
a(j+1) = f * (cs * y);
b(j+1) = f * (ss * y);
end
% boundaries
n2 = floor (n / 2);
a(1) = 0.5 * a(1);
a(n2+1) = 0.5 * a(n2+1);
b(1) = 0.0;
b(n2+1) = 0.0;
Loop on frequency
Cosine component
Sine component
Multiply with signal
From /pwessel/courses/gg691/dft.m
Average of squared absolute values
Spectral power
0 Hz 10 Hz 20 Hz 30 Hz 40 Hz 50 Hz
P
o
w
e
r
(
d
B
)
Frequency (Hz)
Average of squared amplitude
Average
Overlap 50%
padding
Plot data spectrum using EEGLAB
‘winsize’, 256 (change FFT window length)
‘nfft’, 256 (change FFT padding)
‘overlap’, 128 (change window overlap)
Average
Overlap 50%
Padding
Exercice
- Read dataset “eeglab_data_epoch_ica.set”
- Plot spectral decomposition
1- default (15% of data)
2- with 100% of data
3- with 100% and 50% overlap (‘overlap’)
4- reduce window size (‘winsize’)
5- reduce fft length (‘nfft’)
Spectrogram or ERSP
0 ms 10 ms 20 ms 30 ms 40 ms 50 ms 60 ms
5 Hz
10 Hz
20 Hz
30 Hz
Spectrogram or ERSP
0 ms 10 ms 20 ms 30 ms 40 ms 50 ms 60 ms
5 Hz
10 Hz
20 Hz
30 Hz
5 Hz
10 Hz
20 Hz
30 Hz
0 ms 10 ms 20 ms 30 ms 40 ms 50 ms 60 ms
Average of
squared
values
∑
=
=
n
k
k tfFn
tfERSP
1
2),(1),(
Complex number
Scaled to dB 10Log10(ERSP)
Power spectrum and
event-related spectral perturbation
From Delorme and Makeig, J Neuro Methods, 2004
Absolute versus relative power
Absolute = ERS
Relativ
您可能关注的文档
- ddt2004_BBB pred.pdf
- De-embedding of On-wafer Noise Measurements.pdf
- De novo sequencing and transcriptome analysis.pdf
- December 10, 2002.pdf
- DEA based estimation of the technical efficiency of state transport undertakings in India.pdf
- DDR&Flash容量识别一点通.docx
- debug code.pdf
- Decomposition methodology in industrial energy demand analysis.pdf
- Deep face recognition.pdf
- Deep Keck adaptive optics searches for extrasolar planets in the dust of Epsilon Eridani an.pdf
- GB 50140-2005 建筑灭火器配置设计规范.pdf
- GB 50098-98 人民防空工程设计防火规范.pdf
- GB 50098-2009 人民防空工程设计防火规范.pdf
- GB 50151-92 低倍数泡沫灭火系统设计规范(2000年版).pdf
- GB 50156-2012 汽车加油加气站设计与施工规范(2014年版).pdf
- GB 50160-92 石油化工企业设计防火规范(1999年版).pdf
- GB 50160-2008 石油化工企业设计防火标准(2018年版).pdf
- GB 50179-2015 河流流量测验规范:英文.pdf
- GB 50193-93 二氧化碳灭火系统设计规范(1999年版).pdf
- GB 50193-93 二氧化碳灭火系统设计规范(2010年版).pdf
原创力文档


文档评论(0)