国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫CE335編程、代做Python,C++程序設(shè)計(jì)

時(shí)間:2023-12-18  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



CE335 ASSIGNMENT 202**024
(20% of the total module marks)
Analysing Object Recognition and Attention Impairments in Alcoholics
Using Visual Evoked Potential Signals
Submit your Matlab code in a single .m file and a short report (Word or PDF)
through FASER: http://faser.essex.ac.uk/
NOTE: THIS IS AN INDIVIDUAL ASSIGNMENT. It should NOT to be done in group.
Please follow the University's rules concerning plagiarism.
Please read the following rules before you start:
1. You should use only MATLAB for the code.
2. Use the following file name format: firstname_lastname.m.
3. There is no need of submitting the data files.
4. Give instructions to run or compile your code at the top of your .m file in comment form,
such as where the data files should be put and how to set parameters, etc.
5. If your code doesn't run or compile after I follow your instructions, your work will be
marked based on inspection of the program and you may get less than the full marks
(perhaps none). Thus, it is your job to make the instructions/comments clear and
complete.
6. You need to include results, such as figures, from running your program with different
settings, explanations of the results, and discussion and suggestion on identifying most
useful channels in your report.
2
High-level problem description and objectives
It is well known that excessive alcohol consumption affects certain mental activities and thus actions.
This assignment is to analyse the visual evoked potential (VEP) signals recorded from alcoholics and
non-alcoholics, so as to examine whether long term alcohol abuse has an effect on the speed and
quality/strength of response in discrimination based mental tasks. Specifically, given hundreds of
multi-channel VEP signal trials recorded from alcoholics and non-alcoholics respectively, you are
asked to firstly calculate the amplitude and latency time of the P300 component (detailed explanation
is given in the next section) in each trial and each channel, and then calculate and compare the average
P300 amplitude and latency time of the alcoholics and those of the non-alcoholics. The VEP signals
are noisy in general; therefore noise filtering is needed before the P300 peaks can be reliably detected
and analysed.
After completing the assignment successfully, you should be able to conclude that long-term alcohol
abuse causes impairments in object recognition.
Description of the experimental set-up used to record the VEPs (Background only)
VEP data is recorded from 20 subjects (10 alcoholics and 10 non-alcoholics). Each subject completed
40 trials, therefore giving a total of 800 VEP signals. Measurements are taken for one second (the
first second in each trial) from 641 electrodes placed on the subject’s scalp, which are sampled at 256
Hz. Therefore, a total of 256 data points are recorded from each electrode (channel) for each VEP
signal.
The VEP signals are recorded from subjects while being exposed to a single stimulus, which is a
picture of an object chosen from the Snodgrass and Vanderwart picture set. These pictures are
common black and white line drawings like kite, door, bolt, flag, etc. Figure 1 shows some of these
pictures and Figure 2 illustrates the presentation of these pictures with the trial time structure
specified.
Figure 1: Some objects from Snodgrass and Vanderwart picture set
Figure 2: Presentation of Snodgrass and Vanderwart picture stimulus
1 But only 61 channels are active, the rest 3 channels are used as reference channels and can be ignored.
Stimulus
Stimulus
duration: 300 ms
Stimulus
Inter trial
duration: 5100 ms
One trial Next trial
3
The P300 (or P3) component is normally the third positive component within VEP, which normally
occurs between 300 ms and 600 ms after the stimulus onset (e.g., the start of picture presentation).
This component is evoked in a variety of decision-making tasks, and in particular when a stimulus is
recognised.
Description of the VEP data
You can download data files needed for this assignment from Moodle, which contains 800 .mat files
with VEP signals, ca800.txt file with 800 filenames, and channel1.txt file with channel names.
In ca800.txt, the first 400 names are for .mat files with VEP signals from 10 alcoholics, i.e., 40 files
from each alcoholic subject, and the next 400 names are for .mat files with VEP signals from 10 nonalcoholics (controls), i.e., 40 files from each non-alcoholic subject.
Here is an example of the file naming: a370_000.dat: The “a” means that the file is from an alcoholic,
while the 370 denotes that the subject is named “370” and the last “000” denotes the trial number.
Similarly, for a control (non-alcoholic) subject, the file name will start with ‘c’.
The channel (i.e., electrode) list is in channel1.txt. Note that channels ‘X’, ‘Y’, and ‘nd’ are 3
reference channels which should be ignored in this assignment.
To understand the data before you start programming, please load aXXX_XXX.mat file in Matlab,
check the size of x, understand which dimension is for channel and which for time (samples). You
may also plot a VEP signal from a specific channel.
Contact the module supervisor well before the deadline should you encounter any difficulties in
downloading the zip file.
The tasks
I. WRITE Mablab code to perform the following tasks (be careful to follow the exact sequence of
steps) and COMMENT your code properly:
For each file/trial (i.e., each VEP signal) do the following. Repeat 800 times automatically to
process ALL the files [Suggestion: use for loops with fgetl to read the filenames from
ca800.txt].
1. Load a VEP signal (size 64 x 256) from a .mat file. Make sure that the code can load the data
into Matlab environment on any computer without needing to change a directory. [5 marks
for automatically and correctly loading the 800 VEP signals]
2. Compute the VEP signal with reference to channel CZ, which is channel 16. That is, subtract
channel CZ from each channel. After that, remove channel CZ and the three reference
channels, which are X (channel **), nd (channel 63) and Y (channel 64). From now on, you
have 60 channels to process in each trial. [3 marks]
3. Set the mean of each channel to zero (i.e., remove the mean of the signal from each channel).
[2 marks]
4. a. For the first run: Do nothing in this step.
b. For the second run:
Since P300 responses are band-limited to 8 Hz, filter the VEP signal using an appropriate
minimum order Butterworth or Elliptic bandpass filter with passband from 2 Hz to 8 Hz
and with stop frequencies at 0.5 Hz and 12 Hz. Set the minimum attenuation in the
4
stopband to Rs=15 dB and passband ripple Rp=1 dB. You may use Matlab functions
buttord and butter or ellipord and ellip to design the filter and filtfilt to implement the
filter. [10 marks]
c. For the third run:
Do the same as in 4.b, but this time use an FIR filter instead of IIR filter. You may use
Matlab functions kaiserord and fir1 to design the filter and conv to implement the filter.
You can refer to the teaching materials for lecture 8 and lab 4. [10 marks]
[Note: In each run, do either a, b, or c in this step]
5. Compute the P300 peak amplitude and the corresponding latency time for each channel. You
should have one amplitude value and one latency value for each channel (you may use one
matrix for amplitude and one for latency). The P300 peak can be identified as the largest
positive peak (there could be several peaks) in the period of 300-600 ms (find the
corresponding sample points) after the stimulus onset (the start of a trial). If there are no peaks
in this time period, set the P300 peak amplitude and latency to zero. [8 marks]
After the above loops, do the following:
1. Calculate the average P300 amplitude and latency time of the alcoholic subjects in each
channel (i.e., from the first 400 files) and the average P300 amplitude and latency time of the
non-alcoholic subjects in each channel (i.e., from the last 400 files). [3 marks]
2. Compare the average P300 amplitudes of alcoholic subjects and non-alcoholic subjects in all
the 60 channels using plot. [2 marks]
3. Compare the average P300 latencies of alcoholic subjects and non-alcoholic subjects in all
the 60 channels using plot. [2 marks]
II. RUN your Matlab program
1. Run your program without using bandpass filter (step 4.a). Record/save the results/figures.
2. Run your program using step 4.b. Record/save the results (figures and the order of the filter
used).
3. Run your program using step 4.c. Record/save the results (figures and the order of the filter
used).
III. WRITE a short report (in Word or PDF file)
1. Present the figures produced from the above 3 runs. Analyse and explain their differences and
the possible reasons for the differences by using plotted figures. Compare the orders of the
IIR and FIR filters using plotted figures and give reasons for the differences in the orders.
Draw a conclusion (you should justify it) about whether long-term alcohol abuse causes
impairments in object recognition and attention, based on the obtained experimental results.
[30 marks]
2. Based on the obtained experimental results/figures. Suggest a possible method to identify the
channels that are most useful to show the effects of long-term alcohol abuse on object
recognition and attention impairments. No implementation is required. [10 marks]
Code quality
[15 marks] will be allocated to the quality of your code and commenting, including its
effectiveness and efficiency.

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開當(dāng)前頁(yè)
  • 上一篇:TS6024代做、代寫Java,c++設(shè)計(jì)編程
  • 下一篇:MA2552代做、代寫Matlab編程語(yǔ)言
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    精品久久久久久久久久中文字幕| 日本最新一区二区三区视频观看 | 欧美日韩第二页| 91传媒免费视频| 中文字幕成人一区| 国产日韩欧美在线观看| 国产精品久久久久久久久粉嫩av | 久久99精品久久久久久久青青日本| 国产精品成人一区二区三区| 欧美二区在线| 久久久久www| 欧美日韩国产综合视频在线| 久久久久久久9| 日本一级黄视频| 久久精品99| 日韩欧美一区二区三区四区| 国产精品av免费观看| 亚洲 高清 成人 动漫| 91久久精品国产91性色| 亚洲人成无码www久久久| 99在线视频首页| 亚洲区一区二区三区| 91精品久久香蕉国产线看观看| 中文字幕人妻熟女人妻洋洋| 国产欧美一区二区三区不卡高清 | 欧美综合在线播放| 久久久精品久久| 国内一区二区在线视频观看| 久久中文久久字幕| 国产伦精品一区二区三| 亚洲一区二区三区sesese| 91av视频在线免费观看| 日日碰狠狠丁香久燥| 久久久久久久久久久成人| 日本不卡高字幕在线2019| 久久久久久伊人| 欧美精品尤物在线| 国产精品狠色婷| 国产精品亚洲综合天堂夜夜| 亚洲精品一卡二卡三卡四卡 | 欧美日韩福利电影| 91麻豆精品秘密入口| 日本一区二区视频| 国产精品视频午夜| 国产伦精品一区二区三区四区免费| 一级做a爰片久久| 久久免费精品日本久久中文字幕| 欧美亚洲国产成人精品| 国产精品久久久久久亚洲调教 | 日韩精品在线视频免费观看| 国产精品欧美一区二区三区奶水| 国产日韩欧美一区二区| 亚洲欧美国产一区二区| 色婷婷久久av| 国产免费黄视频| 日本一区二区三区www| 国产精品久久久久久亚洲影视 | 国产精品电影网| 99视频日韩| 热re99久久精品国99热蜜月 | 日韩视频一二三| 国产精品传媒毛片三区| 国产精品aaaa| 国内精品久久久久| 亚洲不卡中文字幕| 国产精品女主播| 国产精品 欧美在线| 精品嫩模一区二区三区| 亚洲精品在线免费| 国产精品久久久久久久久久免费| 91成人福利在线| 国产一级大片免费看| 亚洲在线色站| 国产精品日韩电影| 国产黑人绿帽在线第一区| 国产一区二区在线观看免费播放| 欧美一区二区三区在线播放| 国产精品成人观看视频免费| 国产成人av网址| av日韩一区二区三区| 狠狠色综合色区| 日韩免费av一区二区三区| 一区二区三区国产福利| 久久精品视频一| 久久人人爽人人爽人人片av高请| 国产一区二区视频在线观看 | 久久中文字幕在线视频| 久久久久久久久久国产| 成人免费视频久久| 激情综合在线观看| 日本一区二区三不卡| 中文字幕不卡每日更新1区2区 | 日韩久久久久久久久久久久| 中文字幕一区二区中文字幕| 国产精品免费一区二区| 国产h视频在线播放| 91久久久在线| 国产在线视频一区| 欧美亚洲一二三区| 日本免费在线精品| 亚洲欧洲三级| 伊人久久大香线蕉成人综合网| 日韩中文字幕久久| 久久成人免费观看| 国产精品999视频| 成人精品久久一区二区三区| 精品一区二区三区视频日产| 欧美一区亚洲一区| 人人妻人人澡人人爽精品欧美一区| 亚洲aa中文字幕| 亚洲一区二区三区久久| 在线视频亚洲自拍| 欧美成人亚洲成人| 欧美另类99xxxxx| 国产精品久久久久免费a∨大胸 | 日本欧美中文字幕| 日韩一二三区不卡在线视频| 天堂а√在线中文在线| 亚洲 高清 成人 动漫| 亚洲一区二区在| 亚洲午夜精品国产| 中文字幕无码不卡免费视频| 欧美极品在线播放| 久久99精品久久久久久青青91| 国产成人涩涩涩视频在线观看| 日韩在线欧美在线| 日韩视频欧美视频| 国产精品污www一区二区三区| 久久韩国免费视频| 国产精品久久久久久久久粉嫩av| 久久亚洲成人精品| 久久99亚洲热视| 一本色道久久综合亚洲二区三区 | 秋霞毛片久久久久久久久| 日韩一二区视频| 日韩精品一区二区免费| 欧美两根一起进3p做受视频| 麻豆久久久9性大片| 国产无套粉嫩白浆内谢的出处| 国产女大学生av| www.男人天堂网| 久久综合狠狠综合久久综青草| 久久av二区| 国产精品美女www爽爽爽视频| 久久国产精品网站| 亚洲不卡1区| 茄子视频成人免费观看| 国产又大又硬又粗| 成人av中文| 久久久欧美精品| 久久久久久久久久久久av| 国产精品久久国产| 亚洲在线观看视频| 欧美在线免费视频| 国产日韩一区二区在线| 97人人澡人人爽| 日韩中文字幕在线视频播放 | 久久婷婷五月综合色国产香蕉 | 日韩国产高清一区| 国产在线视频欧美| 97久久国产精品| 日韩一区二区在线视频| 久久综合久久八八| 亚洲一区三区在线观看| 欧美自拍视频在线观看| 国产免费高清一区| 久久免费视频3| 久久伊人精品天天| 日韩av资源在线| 国产欧美一区二区视频| 久久99国产精品99久久| 国产精品成人在线| 午夜精品久久久久久久久久久久 | 亚洲综合小说区| 欧美中文字幕视频| av电影一区二区三区| 日韩亚洲第一页| 亚洲最大福利视频网| 欧美日韩一区综合| 99精品国产高清一区二区| 国产精品免费一区二区三区| 天堂v在线视频| 国产欧美日韩视频| 日日骚久久av| 亚洲在线视频一区二区| 欧美日韩系列| 777精品久无码人妻蜜桃| 国产精品成人观看视频国产奇米| 视频一区二区三区在线观看| 国产在线xxxx| 日韩亚洲第一页| 无码中文字幕色专区| 国产一区二区高清不卡| 国产成人免费高清视频| 天天操天天干天天玩| 国产伦精品一区二区三| 国产精品免费区二区三区观看| 色狠狠久久av五月综合| 国产精品伊人日日| 国产精品久久av|