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

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

代做ELEC362、代寫 C++語言程序
代做ELEC362、代寫 C++語言程序

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



Department of Electrical Engineering and Electronics
  ELEC362
Project DataViz version 0.4
   Module
  ELEC362
  Coursework name
  Software Development Project
  Component weight
  50%
  Semester
  1
  HE Level
  5
  Lab location
   personal computers/laptops, university remote computer
  Work
 Individual
  *Estimated time to finish
   40 hours (coding and testing)
  Assessment method
 Individually
  Submission format
   Online via VITAL
  Submission deadline
 23:59 on the 5th of January
  Late submission
   Standard university penalty applies
  Resit opportunity
 None except for extenuating circumstance
  Marking policy
  Marked and moderated independently
  Anonymous marking
  No
  Feedback
  via CANVAS
  Expected release of marks date
   15 business days from the deadline
  Learning outcomes
  LO2: Using C++ to implement GUI-based software. LO3: Using online documentation for self-learning.
 *Note: This estimate may vary based on the need to debug your application. Make sure you start working on the project as soon as possible.
Page 1 of 5

The concept:
The long term aim of the project is to develop a fully functional software, known as DataViz, for plotting and processing datasets, which will be eventually deployed and released for all students in the department to use in their reports, data processing, and as a show case of an authentic experience of software development for the students of ELEC362. The development is planned over 5 years, which started in 2022. Each year the cohort of ELEC362 will be asked to make a major upgrade to the software (will be referred to as the control version in this report).
Each header file of every class in the control version (source files) of the project contains a comment explaining what the purpose of the class is. The features currently available in the app can be found under “Help” menu.
Upgrades required for this year:
For this year you are asked to implement the following upgrades to DataViz 0.2 (the control version) to end up with DataViz 0.4:
Bugs to be fixed:
- Prevent the function feature from plotting a dataset that does not exist.
- Modify the code so when the name of a dataset is changed, the change in the name is
recognisable by the rest of the software.*
- Modify the code such that datasets generated by the function feature are treated similarly to
those generated by reading the dataset from a file.*
Note: A video will be published on CANVAS to show you how to induce these bugs. Features to be added:
  - - -
-
After -
-
If the user input a description of the dataset, that must be saved so that the next time they check it, it is still there. The description of the dataset must be saved.
Add new features to allow the user to set the label of the x-axis, the y-axis and their limits in a graph (only applicable to the XY plot only).
Create an entry “Interpolation” under the menu “Analysis”, which should allow the user to interpolate a dataset based on the x values of another dataset. Use the GSL function for this purpose.*
Add a feature to the app that allows exporting the graphs as an output of the app so that they can be used by the user in their work. For this purpose look at QCustomPlot documentation.
you are done with the upgrade; make sure that:
All the features you add are working well.
You updated the help window in the app to include instructions on how to use the app after the features you added.
You handled a range of potential errors/bugs that may be experienced in the updated app. Even if these errors/bugs are caused by a previous version of the app.
   -
 Page 2 of 5

It is an expectation from everyone to consult Qt documentation to find any functions or classes that might be useful for the implementation of the project. Finally, you should make the programme as professional as possible. Imagine this project as a real-life project given to you, and that in the next years, it will be developed further by other students.
Note for Mac OS users: You can develop the application based on Mac version of the app. The application will be tested and marked on a Windows machine. You should verify that your app works as it should on one of the computers in the lab before submission, to avoid any potential cross- platform issue, if you have any problems, please let me know.
Suggested approach to be followed:
Start by implementing the simplest tasks. For more advanced tasks, a good idea is to learn how to implement these features in an empty app. Once that works, you can adapt the code from the empty project into the control version. Note that is merely a suggestion and it has no impact on your mark whether you followed it or not.
Adding new features is simpler than addressing bugs, therefore it is a good idea to start with that.
If you are unsure contact the module coordinator for any assistance.
The deliverables
Every submission should consist of the project’s files in a zip file + the code written by you copied- pasted in a PDF file+ a filled assistant sheet form. The name of the zip file as well as the report must be your name (MohammadHasan.zip and MohammadHasan.pdf). The PDF file and the assistant sheet must not be zipped.
Industrial Relevance
Data visualisation and processing applications are essential tool in all fields of industry and academia, which apply to all fields of science from physics, chemistry and engineering to social sciences. The tasks given in this project are essential part of famous software including:
    Note: The mark will be based on how your application behaves on a computer in the lab. Check your app on one of the computers in the lab to make sure it works as you expect before submitting your work. Make sure compiling your app is straightforward and does not need any special compilation instructions.
            Page 3 of 5

Questions and Answers:
Q: Should I learn the entire code in the control version?
A: No, you should be able using the material taught in this module to find the relevant part of the code where you need to edit, get familiar with that part to update it. You are not expected to know how everything works from the previous year.
Q: The control version has a lot of codes from elsewhere such as GSL, QCustomPlot, and ATMSP. Should I learn all of that?
A: No, you need to only know the bits that you need.
Q: What if I have a better idea than the control version? Or if I want to modify it?
A: Any improvement is welcome subject to the module’s coordinator approval. Please consult me before you start working on it. Note that this will not affect your marks as it will be only based on the features requested in this document.
Q: How will the markers know how my design works if there is no report?
A: By referring to the updated help window in the app. You should make sure that it is updated in such a way that reflects how the upgraded app should be used.
Q: What if I only did some of the features requested? Will my mark in the three marking criteria be affected?
A: Meeting all the requirements will primarily affect MC1. Some the requirements require more work than others, which were labelled with an asterisk *. Not doing these may impact other MC as well. If you want to prioritise a task, make sure you do the ones with asterisk first.
Q: For a higher mark, is it better do focus on doing few tasks excellently or to do all the task with some flaws?
A: You would get into a higher range of marks if you did many of the task excellently, rather than doing all the tasks with major flaws, as indicated in MC1. This reflects real life where an app with limited capabilities that works every time is better than an app that has a lot of features and keeps crashing. However, to get the highest possible mark do all the tasks to the best of your ability. The time planned for this, and the support available to you can help you achieve that.
Q: If I have a question on marking and assessment that is not addressed here or in the lectures, what should I do?
A: Please contact me, I am happy to address any enquiry.
Page 4 of 5

                       *Marking Criteria
  Criteria (weight %)
   What does it mean?
   Indicative characteristics
  Adequate / pass
(40%)
   Very good/Excellent
    Algorithm and design of the programme (40%)
  Are all the requested features met? Is the upgrade consistent with the previous design or is it completely different? Does the application handle memory efficiently?
    • The programme does what it designed to do with clear shortcoming.
• The use of memory is completely inefficient but is working.
• Many requested features are missing.
• The features added are very different from the style of the rest of the app.
 • The programme does what it designed to do without any flaws an in an efficient way
• The memory management is very efficient.
• Allrequestedfeatureswere added, and listed bugs were fixed.
• The design of the added features is so well integrated with the software, making upgrades for future release of the software straightforward.
      Code and GUI implementation (30%)
 Is the code well organised? Are the variables named properly? Is the code well commented? Does the code make good use of Object- Oriented Programming style? Is the GUI user friendly?
   • It is difficult to understand what the code does.
• Poorly commented code.
• Thecoding /commenting style is different from the original code.
• Layout of the GUI is not set.
• Classes are poorly used or not used at all.
• The added features work but not consideration was given to the user experience.
  • The code is written in very organised way that is easy to follow.
• The code is very well documented.
• The coding/style of the added feature is very similar to the original code.
• The GUI is very easy to work with.
• The data structure used are the most appropriate for the purpose they are used for.
• The code is structured in terms of classes and uses multiple aspects of OOP paradigm.
• Proper consideration for the user experience is given.
    Verification and Error-Handling (30%)
   Has the application been validated and verified? What does the programme do if there is a run-time error?
     • Theapplicationwas tested for one case only.
• Theapplication contains minimal error handling.
• Error messages are not helpful.
   • The application has been thoroughly tested.
• Error handling has been done professionally for at least 3 potential run-time errors/bugs.
• Error messages are meaningful.
 *If you have a feedback query after the marks are released, make sure you contact me within a week, after that the marks are finalised and sent to the Student Support Office.
Page 5 of 5

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





 

掃一掃在手機打開當前頁
  • 上一篇:天天分期24小時在線客服中心-天天分期全國客服電話
  • 下一篇:優品花唄全國客服電話在線解決客戶強制下款暴力催收問題!
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    欧美日韩成人一区二区三区| 国产精品12p| 国产一级特黄a大片99| 97人人澡人人爽| 久99久在线| 亚洲国产精品www| 国产亚洲福利社区| 久久九九免费视频| 日韩av电影在线播放| 国产精品一区二区三区四区五区| 国产精品久久久久9999小说| 欧美一乱一性一交一视频| 欧美a在线视频| 国产成人精品亚洲精品| 日韩中文字幕亚洲精品欧美| 国产精品99免视看9| 欧美激情va永久在线播放| 欧美极品视频一区二区三区| 日韩综合视频在线观看| 亚洲精品乱码久久久久久自慰| av免费观看久久| 久久97精品久久久久久久不卡| 欧美在线视频一区| 久久久国产一区| 欧美自拍视频在线| 国产精品久久久久秋霞鲁丝| 欧美精品亚洲精品| 精品国产一区久久久| 秋霞毛片久久久久久久久| 久久久久国产精品熟女影院| 日韩av在线播放不卡| 久久人人97超碰精品888 | 亚洲二区自拍| 精品一区二区成人免费视频| www.日本久久久久com.| 精品免费一区二区三区蜜桃| 国产精品手机视频| 国产一区二区在线播放| 国产精品久久久久久久久久久新郎| 日本精品国语自产拍在线观看| 国产成人精品免费久久久久| 色999日韩自偷自拍美女| 国产精品96久久久久久又黄又硬| 午夜精品一区二区三区在线| 91九色蝌蚪成人| 日本成人中文字幕在线| 久久久久久亚洲精品不卡| 欧美亚洲激情在线| www.国产一区| 国产原创欧美精品| 精品乱码一区| 91av福利视频| 午夜精品区一区二区三| www.日韩免费| 少妇精品久久久久久久久久| 日韩一中文字幕| 欧美日韩一区二区三| 在线视频不卡一区二区三区| 91精品久久久久久久久| 亚洲国产精品毛片| 北条麻妃在线一区二区| 国产在线观看一区二区三区| 亚欧洲精品在线视频免费观看| 久久久亚洲精品无码| 欧美在线观看网址综合| 国产精品久久久久久久久久直播| 成人a免费视频| 日本一区二区三区四区五区六区 | 亚洲美女搞黄| 久久国产手机看片| 国产欧美婷婷中文| 亚洲欧洲精品在线| 国产精品视频久久久| 国产欧美日韩最新| 天堂va久久久噜噜噜久久va| 国产精品欧美一区二区 | 亚洲在线视频观看| 国产成人精品网站| 高清欧美性猛交| 日本一区二区在线视频| 精品国产一区二区三区四区vr| 97成人精品视频在线观看| 精品无人区一区二区三区竹菊| 亚洲影视中文字幕| 久久精品女人的天堂av| 俄罗斯精品一区二区三区| 日韩免费高清在线| 亚洲色图都市激情| 国产精品免费一区二区| 国产中文日韩欧美| 亚洲aⅴ日韩av电影在线观看| 国产成人看片| 国产精品91免费在线| 欧美国产日韩在线播放| 日韩在线综合网| 国产av不卡一区二区| 久久精品女人的天堂av| 97精品视频在线| 免费特级黄色片| 人人妻人人澡人人爽欧美一区| 精品久久久久久中文字幕动漫| 日韩中文字幕国产| 国产免费一区二区三区| 激情六月丁香婷婷| 中文字幕第一页亚洲| 国产成人精品一区二区三区福利 | 91精品国产99| 国产视频观看一区| 欧美日韩在线播放一区二区| 亚洲国产日韩综合一区| 久久国产精品影视| 日韩中文字幕在线观看| 久久久福利视频| 成人做爽爽免费视频| 国产一区香蕉久久| 欧美一二三视频| 日韩精品极品视频在线观看免费| 中文字幕一区二区三区四区五区六区 | 精品蜜桃传媒| 久久久国产成人精品| 啊v视频在线一区二区三区 | 国产精品对白刺激久久久| 视频在线观看99| 日韩在线视频观看正片免费网站| 91久久久久久久久久| 国产乱码精品一区二区三区卡| 精品少妇人欧美激情在线观看| 自拍视频一区二区三区| 久久91精品国产| 国产成人一二三区| 国产黄色一级网站| 99国产高清| www.久久草| 91精品国产亚洲| 91精品视频专区| 91av在线国产| 成人av蜜桃| 91高清免费视频| 91成人在线视频观看| 国产肥臀一区二区福利视频| 91久久精品视频| 国产精品999视频| 国产精品27p| 国产高清一区视频| 久久久精品在线视频| 久久免费视频网站| 日韩最新av在线| 久久精品色欧美aⅴ一区二区| 国产精品私拍pans大尺度在线| 日韩中文字幕免费视频| 国产精品免费视频xxxx| 久久久久久亚洲精品不卡4k岛国| 久久久久中文字幕| 国产精品日韩欧美大师| 国产精品久久中文字幕| 欧美日本黄视频| 亚洲一区三区在线观看| 日韩女在线观看| 欧美二区在线| 免费黄色福利视频| 国产精品专区h在线观看| 成人福利网站在线观看11| 久久精品xxx| 久久久av一区| 久久久久久97| 日韩中文字幕组| 日本欧美黄网站| 国产一级不卡毛片| 成人精品视频一区二区| 久久久人成影片一区二区三区观看| 国产成年人在线观看| 国产精品久久精品国产| 亚洲午夜精品福利| 亚洲综合色av| 日韩理论片在线观看| 黄色一级片国产| 91久久久精品| 日韩视频在线免费观看| 中文字幕黄色大片| 日韩av电影在线网| 国产日韩精品综合网站| 国产精品自拍小视频| 国产成人一区二区三区电影| 欧美成人免费va影院高清| 亚洲欧美日韩国产成人综合一二三区 | 99精品视频播放| 国产精品视频白浆免费视频| 国产aⅴ精品一区二区三区黄| 婷婷久久五月天| 国产片侵犯亲女视频播放| 99国产精品久久久久老师| 国产精品免费电影| 一区二区三区四区国产| 欧美成人精品欧美一级乱| 国产精品中文在线| 久久精品国产精品| 一本二本三本亚洲码| 国产综合中文字幕| 俄罗斯精品一区二区三区| 久久久精品一区二区|