<div dir="ltr">Let me describe my study. A person is given 4 sections (in total around 60 minutes for all sections for each participant). For each section, participant is given various questions that they need to answer. i.e. it's like a conversation. Due to the nature of the experiment, the length of each section for each participant varies. For instance, for section <b>one </b>(for 4 participants) there are <b>4 different lengths</b> of time window (10 minutes, 15 minutes, 20 minutes, and 25 minutes). Due to that, I have some questions<div><br></div><div>I tried to look at the archives but it seems that there is no answer for the problem that I have.</div><div><br><div><b>1. </b>How can I find what is the most dominant frequency (eg. theta, alpha) for each section ?</div><div><br></div><div>I can plot all types of band via (<b>Plot  > Channel spectra and map</b>) by putting <b>6, 10, 22, 30 in</b> column <b>Frequencies to plot as scalp map</b> for instance. But, how do I choose what is the most dominant frequency (out of 4 frequencies in the example above) during specific period / section ? So that, I can only show one brain figure (eg. brain map figure with 10 Hz) with statistical consideration.</div><div><br></div><div><b>2.</b> I am trying to use the code that is made by Makoto, found it in the archive , but it seems not working to determine which frequency band that is dominant in a certain period. I tried the code in different files, but it showed that low frequency bands have always higher mean amplitude than high frequency bands (eg. delta's mean amplitude is higher than theta's one). Why is it so ? </div><div><br></div><div>Here's the code from Makoto to find mean amplitude</div><div>%%%%%%%%%%%%%%%%%%%<br></div><div><div>% for your epoched data, channel 2</div><div>[spectra,freqs] = spectopo(EEG.data(2,:,:), 0, EEG.srate);</div><div><br></div><div>% delta=1-4, theta=4-8, alpha=8-13, beta=13-30, gamma=30-80</div><div>deltaIdx = find(freqs>1 & freqs<4);</div><div>thetaIdx = find(freqs>4 & freqs<8);</div><div>alphaIdx = find(freqs>8 & freqs<13);</div><div>betaIdx  = find(freqs>13 & freqs<30);</div><div>gammaIdx = find(freqs>30 & freqs<80);</div><div><br></div><div>% compute absolute power</div><div>deltaPower = mean(10.^(spectra(deltaIdx)/10))</div><div>thetaPower = mean(10.^(spectra(thetaIdx)/10))</div><div>alphaPower = mean(10.^(spectra(alphaIdx)/10))</div><div>betaPower  = mean(10.^(spectra(betaIdx)/10))</div><div>gammaPower = mean(10.^(spectra(gammaIdx)/10))</div></div><div>%%%%%%%%%%%%%%%%%</div><div> <br></div><div>Thank you for your help</div><div><br></div><div>Best,</div><div>Ihshan</div><div><br></div><div>if I want to show only one band, considering that is the most dominant or prominent during specific period, </div></div></div>