99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

5CCYB041代寫(xiě)、C++設(shè)計(jì)程序代做
5CCYB041代寫(xiě)、C++設(shè)計(jì)程序代做

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



Object-Oriented Programming Page 1 of 6 Coursework 1
BEng Biomedical Engineering
Object-Oriented Programming
Coursework 1
Objective
To gain practical experience of C++ coding to solve a simple problem. 
Introduction 
Magnetic Resonance Imaging is a powerful imaging technique capable of producing images of 
internal organs with good soft tissue contrast. It relies on a number of hardware components, as 
illustrated in Figure 1: a powerful permanent magnet; magnetic field gradients provided by 
dedicated gradient coils (Figure 1, right); and radio-frequency coils to excite the nuclear spins 
(typically 1H) and detect the resulting nuclear magnetic resonance signal. 
 
Figure 1: the different hardware components of a typical MRI scanner. Left: a cutaway view showing the 
arrangement of the main magnet, gradient coils and RF coil. Right: an example of the design of a gradient 
coil, showing the different concentric windings required to impart magnetic field gradients along the x, 
y & z axes. 
The role of the gradient coils is to impart a linear change in the resonance frequency of the 1H 
nuclear spins as a function of position, which allows the position of the signal to be inferred. To 
provide full images, these magnetic field gradients need to be rapidly modulated in time, which is 
done by driving very large currents through the gradient coils and switching them rapidly on & 
off at appropriate times along the appropriate axes. 
5CCYB041
Object-Oriented Programming Page 2 of 6 Coursework 1
Eddy-currents in MRI
Because of Faraday’s law of electromagnetic induction, these rapid and intense changes in the
magnetic fields induce voltages, which in turn drive currents in nearby conductive structures.
These eddy currents create magnetic fields that oppose the change in magnetic field that created 
them (this is called Lenz’s law). 
In MRI, the net result is that the temporal evolution of the magnetic field gradient actually 
produced will differ from the waveform provided to the gradient amplifier. This is illustrated in 
Figure 2, showing how an ideal trapezoidal input waveform will end up distorted and lagging 
behind what was expected, and the resulting impact on images acquired using echo-planar 
imaging (a single-shot imaging technique). Eddy currents can affect the images in many different 
ways, depending on the type of MRI sequence used and other factors, but they are invariably 
problematic. For this reason, a variety of techniques are used to minimise eddy-currents, 
including hardware solutions (e.g. actively shielded gradients) and gradient pre-emphasis.
Figure 2: illustration of the effect of eddy-currents. (a) the expected waveform (dotted line) is distorted 
due to eddy-currents, resulting in the delayed time evolution of the actual gradients (solid line). (b) The 
eddy-currents (solid line) originate from the rapid changes in the magnetic field that occur when there 
is a change in the gradient (dotted line). (c) image that would ideally be acquired using echo-planar 
imaging (EPI). (d) the image acquired when eddy currents introduce significant delays in the signal 
shows clear ‘ghosting’ artefacts.
Gradient pre-emphasis
Gradient pre-emphasis involves modifying the signal time course provided to the gradient 
amplifier to compensate for the expected effect of eddy-currents, as illustrated in Figure 3. If the 
properties of the eddy-currents are known, it is possible to predict the time course of the actual
gradient for a given input waveform. With pre-emphasis, the input waveform is modified so that 
the time course of the actual gradient matches the desired waveform more accurately.
For the purposes of pre-emphasis, eddy-currents are typically modelled as multiple components, 
each with a given amplitude and decay rate constant. The parameters of the different eddy current components are measured during routine maintenance as part of the calibration of the 
MRI scanner, and stored on the system for use in gradient pre-emphasis.
5CCYB041
Object-Oriented Programming Page 3 of 6 Coursework 1
Figure 3: illustration of gradient pre-emphasis. (a) the desired gradient waveform. (b) the actual gradient 
time course obtained differs due to the effects of eddy-currents. (c) with pre-emphasis, a modified
waveform is provided as input to the amplifier, designed in such a way that the actual gradient time 
course matches the desired waveform.
Instructions 
Your task in this coursework is to write a C++ program to implement a simple gradient pre emphasis strategy. This program should perform the following main steps (these are described in 
more detail below): 
1. Load the parameters describing the eddy-currents for the system from the file provided.
2. Load the desired time course for the gradient from the file provided.
3. Make a copy the desired time course, which will be the initial input gradient time course.
4. Compute the predicted time course for the input time course by taking the effects of eddy currents into account.
5. Compute the maximum absolute deviation between the desired and predicted time 
courses, and display this value on the terminal
6. Display the input and predicted time courses on the terminal.
7. Compute the difference between the desired and predicted time course.
8. Add that difference back to the current input time course.
9. Go back to step 4 and repeat for the desired number of iterations
10. If requested, write the final estimate of the compensated input time course to the file 
specified on the command-line
Command-line interface
Your program should accept at least 2 arguments: the configuration file containing the parameters 
for the eddy-currents, and the file containing the desired time course. If a third argument is 
provided, this should be interpreted as a request to store the estimated compensated time course 
to the file specified in that argument.
Your program should also accept a “-n num” command-line option to override the default number 
of iterations. If left unspecified, the default number of iterations should be set to 10.
5CCYB041
Object-Oriented Programming Page 4 of 6 Coursework 1
Loading the input data
You are provided with a text file called parameters.txt file containing the eddy-current 
parameters. Each line in this file contains two values: the amplitude and the rate constant for each 
eddy-current component. 
You are also provided with a text file called gradient.txt file containing the intensity values at 
regular sampling intervals for the desired gradient time course. 
Computing the predicted gradient time course 
The impact of the eddy-currents can be predicted using a simple model. Each eddy-current 
component can be modelled independently, and will have an associated current 𝐼𝑛 (with initial
value zero). The instantaneous chance in the gradient, 𝑑𝐺, causes the current to increase in 
proportion. At the same time, the resistance in the system causes the current to reduce in 
proportion to the magnitude of the current. The predicted gradient is then given as the input
gradient minus the eddy-current contributions, which is the sum of their currents weighted by 
their respective amplitude parameter. 
This can be written in simplified form as:
𝑑𝐺𝑡 = 𝐺𝑡 − 𝐺𝑡−1
𝐼𝑛,𝑡 = 𝐼𝑛,𝑡−1 + 𝑑𝐺𝑡 − 𝑅𝑛 × 𝐼𝑛,𝑡−1
𝐺𝑡
′ = 𝐺𝑡 − ∑𝐴𝑛 × 𝐼𝑛,𝑡
𝑁
𝑛
where:
• 𝐺𝑡 and 𝐺𝑡

are the input and predicted waveforms at time point 𝑡 respectively
• 𝐼𝑛,𝑡
is the value of the current at time point 𝑡 for the nth eddy-current component
• 𝐴𝑛 and 𝑅𝑛 are the amplitude and rate constant parameters for the nth eddy-current 
component.
• 𝑁 is the number of eddy-current components listed in the parameter file.
Computing the compensated time course
The compensation to be applied to the waveform can be computed using the following iterative 
approach:
Given the desired waveform:
• Initialise the current estimate of the (compensated) input waveform as the desired
waveform
• Repeat for the desired number of iterations:
o Compute the predicted waveform for the current input waveform
o Compute the difference between the desired and predicted waveforms
o Add the computed difference to the current input waveform, to produce the next 
estimate of the input waveform
5CCYB041
Object-Oriented Programming Page 5 of 6 Coursework 1
Displaying the waveforms
The various waveforms can be displayed using the terminal_graphics library. Refer to the relevant 
course slides and the project README for detailed instructions. 
Briefly: download the terminal_graphics.h header and place it in your project folder, alongside 
your own code. Make sure to #include that header into your code. Then use the TG::plot()
functionality as illustrated below:
#include "terminal_graphics.h"
...
std::vector<float> desired_gradient, predicted_gradient; 
... 
TG::plot (width, height)
 .add_line (desired_gradient)
 .add_line (predicted_gradient, 3);
Writing the final compensated time course
Your program should only store the output if provided with a third argument on the command line. If this is the case, you should write the final compensated time course to the file specified as 
the last argument, in the same format as the original desired time course. 
Example output
The example below only shows the initial and last iteration of the algorithm:
5CCYB041
Object-Oriented Programming Page 6 of 6 Coursework 1
Reporting Requirements 
You should submit a C++ project that meets as many of the requirements as possible. You do not 
need to submit any written report but do try to use variable/function naming, comments and 
indentation to make your program as easy to understand as possible. Also try to make your 
program as resilient to runtime errors as possible. 
Submission will be via the KEATS system. The submission point will only allow you to upload a 
single file so you should combine all files into a single ZIP file. Please only include your .cpp and
.h files (please run “oop_build clean” first to remove any executables or object files). 
The hand-in date is 25 Feb 2025, 4 pm. Late submissions (within 24 hours of this deadline) will 
be accepted but will be capped at the module pass mark (i.e. 40%). 
If your program does not meet all requirements, then please submit what you have written by the 
deadline. 
Assessment 
Your coursework will be marked on a number of factors: 
• Does the program work? Does it meet all requirements? Has it been tested extensively? 
(60%) 
• Program design and appropriate use of C++ language features, e.g. control structures, 
functions, data types, etc. (30%)
• Use of comments, indentation and variable/function names to make code easy to 
understand (10%)
The overall mark for this coursework will make up 10% of your total mark for this module. 
This is an individual assignment. You are not permitted to work together with any other 
student. Note that general discussions about design decisions and/or coding strategies are 
permitted, and such discussions can be a useful learning experience for you. But you should not, 
under any circumstances, share details of designs or code. 
Code generated using AI assistants, etc. is also not permitted. While these tools may 
(potentially) be useful in your learning to help clarify certain concepts, this is only true if they are 
used very cautiously and sparingly. Over-reliance on these tools to give you ready answers will 
inhibit your learning by preventing you from working things out for yourself. This will result in
failure in the final exam where you will have no access to these tools (note that the final exam
accounts for 60% of the overall marks on this module). We therefore strongly discourage the use 
of any form of AI assistants – in our opinion (and that of many others), these are detrimental to 
your performance on the course.

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

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:紅星花客服電話24小時(shí)在線解決客戶下款問(wèn)題!
  • 下一篇:極借花全國(guó)客服電話-極借花24小時(shí)服務(wù)熱線電話
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          久久综合导航| 一区二区三区在线视频免费观看 | 午夜精品成人在线| 136国产福利精品导航网址| 国产精品av免费在线观看| 久久野战av| 欧美专区在线观看| 午夜精品福利一区二区三区av | 亚洲精品在线一区二区| 国产一区二区三区免费不卡| 欧美久久电影| 欧美电影免费观看| 久久综合福利| 久久婷婷激情| 久久久噜噜噜久久中文字幕色伊伊 | 男女激情视频一区| 久久精品国产亚洲aⅴ| 亚洲女人av| 亚洲欧美日韩在线| 午夜国产一区| 久久精品女人的天堂av| 久久国产黑丝| 久久久福利视频| 久久精品日韩| 久久视频一区二区| 欧美va亚洲va国产综合| 欧美激情国产高清| 欧美激情中文不卡| 欧美日韩国产成人在线| 欧美三级网址| 国产精品色在线| 国产三级欧美三级| 国模精品一区二区三区色天香| 国产免费观看久久| 国内精品伊人久久久久av一坑| 国产婷婷色一区二区三区| 国产视频精品va久久久久久| 国产一区二区三区免费在线观看| 国内视频一区| 亚洲美女性视频| 亚洲女人小视频在线观看| 欧美伊人影院| 欧美激情自拍| 国产精品国产三级国产普通话蜜臀 | 樱桃国产成人精品视频| 亚洲三级免费观看| 亚洲免费影视| 久久中文字幕一区| 欧美三级中文字幕在线观看| 国产美女精品视频| 亚洲国产91| 亚洲欧美成aⅴ人在线观看| 久久精品一本久久99精品| 欧美精品麻豆| 国产亚洲视频在线观看| 亚洲精品国产视频| 欧美一区二区三区四区在线观看地址 | 欧美大片免费久久精品三p | 国产精品日韩一区| 尤物精品在线| 新片速递亚洲合集欧美合集| 欧美大片18| 国产亚洲成av人在线观看导航 | 亚洲三级视频| 欧美在线一二三区| 欧美另类极品videosbest最新版本| 国产精品日韩精品| 亚洲乱码国产乱码精品精可以看| 午夜精品999| 欧美精品乱人伦久久久久久| 国产一区二区三区自拍| 亚洲网站啪啪| 欧美日韩在线一区| 亚洲三级免费电影| 久久伊伊香蕉| 国产婷婷色一区二区三区在线 | 国产精品高精视频免费| 亚洲人成网站777色婷婷| 欧美一区二区三区四区在线观看地址| 欧美成ee人免费视频| 国产亚洲欧美日韩美女| 亚洲欧美日韩区| 国产精品久久久久久久久久妞妞| 亚洲国产婷婷综合在线精品 | 久久人人爽人人爽爽久久| 国产精品网站在线播放| 中文网丁香综合网| 欧美精品日韩| 日韩视频中文| 欧美日韩日本网| 亚洲视频专区在线| 欧美午夜免费| 亚洲桃色在线一区| 国产精品爱久久久久久久| 亚洲理伦在线| 欧美日韩国产综合视频在线观看中文 | 国产精品扒开腿做爽爽爽软件| 亚洲国内精品在线| 欧美激情欧美激情在线五月| 亚洲国产天堂久久国产91| 欧美电影免费观看大全| 亚洲精品之草原avav久久| 欧美日韩大片一区二区三区| 一个人看的www久久| 欧美午夜大胆人体| 性欧美长视频| 在线免费观看视频一区| 欧美激情中文字幕乱码免费| 日韩视频免费观看高清完整版| 欧美日韩一二三区| 亚洲欧美影音先锋| 伊人久久大香线蕉av超碰演员| 久久只精品国产| 亚洲日本中文字幕| 国产精品人人做人人爽| 久久狠狠久久综合桃花| 亚洲国产精品成人| 国产精品成人播放| 久久激情五月丁香伊人| 91久久一区二区| 国产精品国产自产拍高清av| 久久国产精品第一页| 亚洲精品一区二区三区蜜桃久| 欧美色图一区二区三区| 久久久噜噜噜| 亚洲性夜色噜噜噜7777| 激情综合网址| 国产精品草草| 欧美国产极速在线| 香蕉久久一区二区不卡无毒影院| 在线观看日韩欧美| 国产精品国产三级国产专区53 | 欧美大片91| 新片速递亚洲合集欧美合集| 亚洲精品国产精品国自产在线| 国产精品视频xxx| 欧美电影免费观看网站| 亚洲欧美日韩精品久久亚洲区| 在线精品国产成人综合| 国产精品久久二区| 欧美激情一区| 久久亚洲精选| 久久精品日产第一区二区| 99热精品在线| 亚洲欧洲综合另类| 激情综合网址| 国产一区二区三区精品久久久| 欧美日韩精品一二三区| 免费高清在线一区| 久久精品国产99国产精品| 午夜国产精品视频| 正在播放日韩| 一本色道久久综合狠狠躁的推荐| 影音先锋一区| 黄色精品一区二区| 狠狠狠色丁香婷婷综合久久五月| 国产精品亚洲精品| 国产精品久久看| 国产精品免费网站| 国产精品s色| 欧美日韩在线观看视频| 欧美日本在线| 欧美性猛交视频| 国产精品国内视频| 国产伦精品一区二区| 国产精品二区三区四区| 国产精品免费在线| 国产欧美日韩麻豆91| 国产欧美日韩中文字幕在线| 国产精品视频一二| 国产欧美精品日韩精品| 国产日韩视频一区二区三区| 国产精品尤物福利片在线观看| 国产伦理一区| 国产亚洲亚洲| 亚洲国产成人porn| 日韩网站在线看片你懂的| 一本到12不卡视频在线dvd| 一区二区免费在线观看| 亚洲欧美激情四射在线日| 欧美在线免费看| 免费成人激情视频| 欧美日韩综合视频| 国产欧美日韩亚州综合| 一区二区三区无毛| 日韩一级欧洲| 亚洲国产精品成人| 一区二区三区欧美激情| 欧美一区二区性| 免费亚洲视频| 国产精品欧美久久久久无广告| 国产亚洲高清视频| 亚洲精品看片| 性欧美1819性猛交| 欧美国产日韩一区| 国产日韩欧美亚洲一区| 亚洲激情自拍| 欧美在线视频一区| 欧美日韩一区二区三区在线观看免 | 国内外成人在线视频|