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

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CE335編程、代做Python,C++程序設計

時間:2023-12-18  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



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.

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:TS6024代做、代寫Java,c++設計編程
  • 下一篇:MA2552代做、代寫Matlab編程語言
  • 無相關信息
    合肥生活資訊

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

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    日韩福利在线| 精品一区二区三区视频日产| 日韩精品―中文字幕| 波多野结衣综合网| 国产精品老牛影院在线观看| 日韩欧美猛交xxxxx无码| 高清一区二区三区日本久 | 北条麻妃一区二区三区中文字幕| 一本色道久久综合亚洲二区三区| 国内精品视频免费| 久久视频精品在线| 欧美一级大片在线观看| 久久久久亚洲精品国产| 欧美一区1区三区3区公司| 911国产网站尤物在线观看| 在线视频精品一区| 国产精品一区=区| 一区二区三区一级片| 国产一区二区三区黄| 国产精品成人av性教育| 麻豆蜜桃91| 精品国产乱码久久久久久108 | 国产日韩亚洲欧美| 九九热在线精品视频| 国产一区二区不卡视频在线观看| 久久精品视频中文字幕| 欧美日韩亚洲一| 国产精品丝袜久久久久久不卡 | 91精品国产综合久久男男| 亚洲资源在线看| 99热在线播放| 五月天综合婷婷| 国产福利片一区二区| 日本三级中文字幕在线观看| 久久久久久久久综合| 欧美老熟妇喷水| 久久五月天色综合| 国产精品一区专区欧美日韩| 亚洲综合色激情五月| 9191国产视频| 欧美亚洲国产免费| 久久躁日日躁aaaaxxxx| 国产日本欧美在线| 中国人体摄影一区二区三区| 国产精品999999| 欧美综合在线观看视频| 国产精品日韩在线一区| 国产日韩欧美电影在线观看| 亚洲欧美久久234| 久久99蜜桃综合影院免费观看| 欧美亚洲国产视频小说| 欧美日韩第一视频| 久久九九视频| 国内精品久久久久久久果冻传媒| 欧美日韩电影在线观看| 91精品国产自产在线观看永久| 日本国产高清不卡| 久久深夜福利免费观看| 国产伦精品一区二区三| 大波视频国产精品久久| 国产精品视频色| 99在线视频首页| 日韩精品―中文字幕| 久久成人亚洲精品| 久久日韩精品| 国产在线精品日韩| 日韩中文字幕一区| 欧美精品日韩www.p站| 91av国产在线| 国产专区一区二区| 日本一区免费观看| 久久91精品国产91久久跳| 国产精国产精品| 国语自产精品视频在线看| 亚洲字幕一区二区| 久久精品视频99| 国产精品99久久免费黑人人妻| 男女猛烈激情xx00免费视频| 亚洲精品欧美一区二区三区| 国产精品久久久影院| 国产极品jizzhd欧美| 国产日韩精品在线| 日韩免费一区二区三区| 一本色道久久综合亚洲精品婷婷 | 久久久精品国产亚洲| 国产日韩精品一区观看| 日韩精品一区二区三区色欲av| 欧美精品情趣视频| 久久人人爽人人爽爽久久| 91av免费看| 国产精品一区二区久久国产| 免费日韩中文字幕| 日韩精品一区在线视频| 亚洲第一在线综合在线| 欧美xxxx做受欧美| 日韩亚洲一区二区| 国产精品69久久久久| 国产精品一区二区你懂得| 精品欧美一区二区精品久久| 欧美一级免费看| 国产精品第157页| 北条麻妃久久精品| 国产成人精品久久| 97久久精品午夜一区二区| 国产深夜精品福利| 黑人中文字幕一区二区三区| 日本精品免费在线观看| 天天干天天操天天干天天操| 亚洲在线视频观看| 九九热精品在线| 久久夜色精品国产亚洲aⅴ| 久久久999国产| 久久精品在线播放| 久久久久久久久久伊人| 国产福利久久| 国产精品777| 91传媒免费视频| 91九色国产社区在线观看| 高清不卡一区二区三区| 国产欧美在线一区| 国产欧美日韩高清| 国产精选在线观看91| 国产欧美精品一区二区三区介绍| 精品视频免费观看| 国产主播在线一区| 免费看日b视频| 精品一区国产| 国产肉体ⅹxxx137大胆| 国产一区二区三区四区五区加勒比 | 成人国产精品av| y111111国产精品久久婷婷| 国产欧美日韩一区| 国产免费高清一区| 国产精品一区二区av| caoporn国产精品免费公开| 99精彩视频| 久久免费视频1| 久久久久久久久影视| 久久99蜜桃综合影院免费观看| 久久av综合网| 久久久国产视频91| 国产精品久久久久久久免费大片| 久久精品视频一| 九九精品视频在线| 亚洲视频欧美在线| 欧美一区二区三区在线免费观看| 日本欧美视频在线观看| 欧美性视频网站| 国产又粗又爽又黄的视频| 国产伦精品一区二区三区视频孕妇 | 日本高清+成人网在线观看| 国产精品美女久久久久久免费| 国产精品国产三级国产专区51| 久久国产精品99国产精| 中文字幕在线中文| 欧美一级特黄aaaaaa在线看片| 日韩人妻无码精品久久久不卡 | 亚洲国产精品www| 视频一区国产精品| 欧美做受高潮1| 国产欧亚日韩视频| 久久久com| 久久夜色精品国产| 亚洲www永久成人夜色| 欧美有码在线观看视频| 国产欧美日韩网站| 国产二区一区| 操日韩av在线电影| 亚洲精品久久区二区三区蜜桃臀| 热99在线视频| 国产美女永久无遮挡| 久久精品欧美| 精品国产一二三四区| 熟女少妇在线视频播放| 免费国产在线精品一区二区三区| 91久久久亚洲精品| 国产精品久久久久免费a∨| 亚洲欧洲精品一区二区| 黄色一级大片在线观看| av免费观看久久| 国产精品日韩在线观看| 欧美一区二区三区在线播放| 免费在线观看一区二区| 91久久精品美女高潮| 国产精品美女无圣光视频| 午夜视频在线瓜伦| 国产综合欧美在线看| 国产黄色特级片| 久久婷婷国产麻豆91天堂| 日本三级韩国三级久久| 成人中文字幕av| 国产精品美女主播在线观看纯欲| 亚洲精品日产aⅴ| 国产人妻人伦精品| www.久久色.com| 亚洲精品国产系列| 国产视频一区二区不卡| 久久视频这里只有精品| 日韩 欧美 高清| 99免费在线观看视频|