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

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

MATH2033代做、代寫Java,Python編程
MATH2033代做、代寫Java,Python編程

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



MATH2033 Introduction to Scientific Computation
— Coursework 2 —
Submission deadline: 15:00 Friday 20 December 2024
This coursework contributes 10% towards your mark for this module.
Rules
It is not permitted to use generative artificial intelligence (AI) software for this coursework. Ensure that
you have read and have understood the Policy on academic misconduct. One of the things stated in
this policy is that “The submission of work that is generated and/or improved by software that is not
permitted for that assessment, for the purpose of gaining marks will be regarded as false authorship
and seen as an attempt to gain an unpermitted academic advantage”.
This coursework should be your own individual work, with the exceptions that:
1. You may ask for and receive help from the lecturer Richard Rankin although not all questions will be
answered and those that are will be answered to all students that attend the class.
2. You may copy from material provided on the Moodle pages:
• Introduction to Scientific Computation (MATH2033 UNNC) (FCH1 24-25)
• Analytical and Computational Foundations (MATH1028 UNNC) (FCH1 2**4)
• Calculus (MATH1027 UNNC) (FCH1 2**4)
• Linear Mathematics (MATH1030 UNNC) (FCH1 2**4)
Coding Environment
You should write and submit a py file. You are strongly encouraged to use the Spyder IDE (integrated
development environment). You should not write or submit an ipynb file and so you should not use
Jupyter Notebook.
It will be assumed that numpy is imported as np, and that matplotlib.pyplot is imported as plt.
Submission Procedure:
To submit, upload your linear systems.py file through the Coursework 2 assignment activity in the
Coursework 2 section of the Moodle page Introduction to Scientific Computation (MATH2033 UNNC)
(FCH1 24-25).
Marking
Your linear systems.py file will be mainly marked by running your functions with certain inputs and comparing
 the output with the correct output.
Department of Mathematical Sciences Page 1 of 51. The linear systems.py file contains an unfinished function with the following first line:
def smax (w ,s , i ) :
Assume that:
• The type of the input w is numpy.ndarray.
• The type of the input s is numpy.ndarray.
• The type of the input i is int.
• There exists an int n such that the shape of w is (n,) and the shape of s is (n,).
• The input i is a nonnegative integer that is less than n.
Complete the function smax so that it returns an int p which is the smallest integer for which
i ≤ p < n
and
|w[p]|
s[p]
 = max
j∈{i,i+1,...,n−1}
|w[j]|
s[j]
.
A test that you can perform on your function smax is to run the Question 1 cell of the tests.py file
and check that what is printed is:
1
[20 marks]
Coursework 2 Page 2 of 52. Suppose that A ∈ R
n×n, that det(A) 6= 0 and that b ∈ R
n.
The linear systems.py file contains an unfinished function with the following first line:
def spp (A ,b , c ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input c is int.
• There exists an int n such that n > 1, the shape of A is (n,n) and the shape of b is (n,1).
• The input A represents A.
• The input b represents b.
• The input c is a positive integer that is less than n.
Complete the function spp so that it returns a tuple (U, v) where:
• U is a numpy.ndarray with shape (n,n) that represents the matrix comprised of the first n
columns of the matrix arrived at by performing forward elimination with scaled partial pivoting
on the matrix 
A b 
until all of the entries below the main diagonal in the first c columns are
0.
• v is a numpy.ndarray with shape (n,1) that represents the last column of the matrix arrived at
by performing forward elimination with scaled partial pivoting on the matrix 
A b 
until all of
the entries below the main diagonal in the first c columns are 0.
A test that you can perform on your function spp is to run the Question 2 cell of the tests.py file
and check that what is printed is:
[[ 10. 0. 20.]
[ 0. -5. -1.]
[ 0. 10. -11.]]
[[ 70.]
[ -13.]
[ -13.]]
[30 marks]
Coursework 2 Page 3 of 53. Suppose that A ∈ R
n×n, that det(A) 6= 0, that all of the entries on the main diagonal of A are
nonzero and that b ∈ R
n. Let x ∈ R
n be the solution to Ax = b. Let x
(k) be the approximation
to x obtained after performing k iterations of the Gauss–Seidel method starting with the initial
approximation x
(0)
.
The linear systems.py file contains an unfinished function with the following first line:
def GS (A ,b ,g ,t , N ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input g is numpy.ndarray.
• The type of the input t is numpy.float64, float or int.
• The type of the input N is int.
• There exists an int n such that the shape of A is (n,n), the shape of b is (n,1) and the shape
of g is (n,1).
• The input A represents A.
• The input b represents b.
• The input g represents x
(0)
.
• The input t is a real number.
• The input N is a nonnegative integer.
Complete the function GS so that it returns a tuple (y, r) where:
• y is a numpy.ndarray with shape (n, M + 1) which is such that, for j = 0, 1, . . . , n − 1,
y[j, k] =x
(k)
j+1 for k = 0, 1, . . . , M where M is the smallest nonnegative integer less than N for
which
is less than t if such an integer M exists and M = N otherwise.
• r is a bool which is such that r = True if
is less than t and r = False otherwise.
A test that you can perform on your function GS is to run the Question 3 cell of the tests.py file and
check that what is printed is:
[[ 0. 12. 12.75 ]
[ 0. 3. 3.9375 ]
[ 0. 6.75 6.984375]]
False
[25 marks]
Coursework 2 Page 4 of 54. Suppose that A ∈ R
n×n, that det(A) 6= 0, that all of the entries on the main diagonal of A are
nonzero and that b ∈ R
n. Let x ∈ R
n be the solution to Ax = b. Let x
(k) be the approximation
to x obtained after performing k iterations of the Gauss–Seidel method starting with the initial
approximation x
(0)
.
The linear systems.py file contains an unfinished function with the following first line:
def GS_plot (A ,b ,g ,x , N ) :
Assume that:
• The type of the input A is numpy.ndarray.
• The type of the input b is numpy.ndarray.
• The type of the input g is numpy.ndarray.
• The type of the input x is numpy.ndarray.
• The type of the input N is int.
• There exists an int n such that the shape of A is (n,n), the shape of b is (n,1), the shape of g
is (n,1) and the shape of x is (n,1).
• The input A represents A.
• The input b represents b.
• The input g represents x
(0)
.
• The input x represents x.
• The input N is a nonnegative integer.
Complete the function GS plot so that it returns a matplotlib.figure.Figure, with an appropriate
legend and a single pair of appropriately labelled axes, on which there is a semilogy plot
of:
A test that you can perform on your function GS plot is to run the Question 4 cell of the tests.py
file.
[25 marks]
Coursework 2 Page 5 of 5

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


 

掃一掃在手機打開當前頁
  • 上一篇:代做COMP2012J、java編程語言代寫
  • 下一篇:DSCI 510代寫、代做Python編程語言
  • ·代做DI11004、Java,Python編程代寫
  • ·03CIT4057代做、代寫c++,Python編程
  • ·代寫CHEE 4703、代做Java/Python編程設計
  • ·代做INT2067、Python編程設計代寫
  • ·CS 7280代做、代寫Python編程語言
  • ·CSCI 201代做、代寫c/c++,Python編程
  • ·代寫G6077程序、代做Python編程設計
  • ·代做COMP SCI 7412、代寫Java,python編程
  • ·代做COMP642、代寫Python編程設計
  • ·代寫CSSE7030、代做Python編程設計
  • 合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    久久久福利视频| 国产精品久久久久久久久久尿 | 欧美精品卡一卡二| 91精品一区二区| 欧美日韩第一视频| 国产人妻人伦精品| 国产精品久久久999| 欧美日韩国产精品一区二区| 日韩视频―中文字幕| 亚洲不卡1区| 91美女福利视频高清| 亚洲一区精品视频| 97免费视频观看| 亚洲一区亚洲二区| 91九色蝌蚪国产| 亚洲电影一二三区| 久久噜噜噜精品国产亚洲综合| 亚洲一区二区三区免费看| 国产乱人伦真实精品视频| 国产精品成人av在线| 国产一区二区在线免费视频| 久久91亚洲精品中文字幕奶水| 国产欧美在线视频| 欧美激情精品久久久久久| www.欧美黄色| 婷婷四房综合激情五月| 国产精品99久久久久久久久久久久| 亚洲国产一区二区三区在线| 久久久久九九九| 人人妻人人添人人爽欧美一区| 久久久久久久久久久国产| 欧美专区国产专区| 日韩视频免费在线观看| 蜜桃av久久久亚洲精品| 久久久久国产精品一区| 91精品国产沙发| 日韩网站在线免费观看| 国产精品无码乱伦| 国产美女精品在线观看| 亚洲国产成人不卡| 九九九九免费视频| 国内精品久久久久久久果冻传媒| 欧美乱妇40p| 99在线免费视频观看| 日本精品久久久久中文字幕| 久久久久www| 成人免费在线小视频| 午夜精品区一区二区三| 久操网在线观看| 红桃av在线播放| 一级一片免费播放| 日韩亚洲精品视频| 国产美女精品久久久| 亚洲高潮无码久久| 国产精品免费一区二区| 成人av网站观看| 欧美在线影院在线视频| 欧美另类99xxxxx| 91麻豆国产精品| 欧洲久久久久久| 欧美激情第6页| 九色在线视频观看| 国产日韩精品一区观看| 亚洲影院在线看| 国产精品视频一区二区高潮| av一区二区三区免费观看| 日韩精品资源| 久久久久久com| 精品国内自产拍在线观看| 成人精品网站在线观看| 欧美专区在线观看| 亚洲熟妇无码一区二区三区| 久久精品国产2020观看福利| 91精品综合久久久久久五月天| 欧美精品一区二区三区在线看午夜| 色综合91久久精品中文字幕| 久久av免费观看| 国产精品一二三视频| 日韩视频在线观看国产| 亚洲一区二区精品在线| 国产成人鲁鲁免费视频a| 97碰在线观看| 国产欧美日韩最新| 明星裸体视频一区二区| 亚洲伊人成综合成人网| 国产精品成人一区二区三区| 日日摸夜夜添一区| 久久久午夜视频| 国产精品无码av在线播放| 91|九色|视频| 国产欧美va欧美va香蕉在线| 欧美日韩精品综合| 午夜精品美女久久久久av福利| 国产精品久久精品国产| www.日韩欧美| 久久精品人人做人人爽电影 | 欧美在线视频二区| 熟女少妇在线视频播放| 一区二区三区av| 国产aaa一级片| 久久夜色撩人精品| 国产精品污www一区二区三区| 久久国产精品久久| 久久免费福利视频| 91精品国产沙发| 99热在线国产| 国产女人18毛片| 国产一区二区三区在线免费| 激情综合网俺也去| 欧美精品久久久久久久久久久| 日韩精品久久久| 少妇特黄a一区二区三区| 一区二区精品国产| 欧美成人一二三| 久久成年人免费电影| 国产精品国产精品| 国产精品免费久久久久久| 久久久久久久久久久一区| 国产不卡在线观看| 久99久视频| 国产成人精品一区二区| 日韩在线免费视频观看| 久久免费视频1| 国产mv久久久| 精品国产欧美一区二区五十路 | 国产精品久久久久久久天堂| 日韩视频中文字幕| 久久色在线播放| 国产精品久久久久久久久久| 超在线视频97| 伊人久久大香线蕉成人综合网| 精品久久久无码人妻字幂| 国产精品电影在线观看| 精品国偷自产一区二区三区| 久久综合色影院| 色中色综合影院手机版在线观看| 国产999视频| 中文字幕无码精品亚洲资源网久久| 亚洲在线欧美| 日韩a∨精品日韩在线观看| 日本精品久久久久久久久久| 青青在线视频一区二区三区| 欧美日本国产精品| 国产美女91呻吟求| 久久久久久www| 国产精品视频福利| 精品国产一区二区三区无码| 一本色道久久综合亚洲二区三区| 天天摸天天碰天天添| 欧美精品久久久| 国产精品一级久久久| 国产不卡一区二区三区在线观看 | 色综合影院在线观看| 欧美日韩精品久久| 国产免费一区二区三区四在线播放| 91免费精品视频| 日韩在线小视频| 精品久久久久久一区二区里番| 亚洲欧洲日夜超级视频| 欧在线一二三四区| 国产三区二区一区久久| 91精品国产91久久| 久久综合伊人77777尤物| 在线视频福利一区| 日本一区二区三区四区在线观看 | 国产欧美精品在线| 国产精品99久久久久久白浆小说| 日韩在线播放一区| 在线免费一区| 欧美日韩系列| 91九色国产视频| 国产精品乱码| 视频一区亚洲| 韩日午夜在线资源一区二区| 91精品综合久久| 国产精品美乳一区二区免费| 亚洲免费视频一区| 麻豆av免费在线| 久久久最新网址| 伊人婷婷久久| 欧美另类一区| 91av国产在线| 精品国产乱码久久久久久久软件| 日韩中文字幕一区| 国产日韩亚洲欧美| 精品国内产的精品视频在线观看| 亚洲午夜精品国产| 国产原创中文在线观看| 久久久女女女女999久久| 久久国产视频网站| 欧美深夜福利视频| 81精品国产乱码久久久久久 | 青青草国产精品| 91干在线观看| 中文字幕第一页亚洲| 蜜桃av噜噜一区二区三| 久久久久久久久一区| 亚洲专区国产精品| 国内精品久久影院| www.午夜精品|