国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女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在线免费观看
    久久资源av| 97碰在线观看| 国产精品福利在线观看网址| 91精品国产九九九久久久亚洲 | 久久精品色欧美aⅴ一区二区| 91福利视频网| 97人人模人人爽人人喊38tv| 国产精品中文字幕在线观看| 成人精品视频久久久久| 国产伦精品一区二区三区高清| 国内精品二区| 国产系列第一页| 国产免费一区二区视频| 高清一区二区三区四区五区| 国产一区自拍视频| 欧美激情www| 欧美国产一区二区在线| 狠狠干 狠狠操| 国产欧美日韩视频一区二区三区| 国产免费一区二区视频| 不卡中文字幕在线| 国产成人精彩在线视频九色| 久久综合五月天| 亚洲一区免费看| 少妇久久久久久被弄到高潮| 日韩视频在线播放| 国产一区二区在线网站| 91精品久久久久久蜜桃| 久久久久久久久久国产| 国产精品第七十二页| 久久777国产线看观看精品| 亚洲a中文字幕| 欧美大陆一区二区| 99超碰麻豆| 国产精品露出视频| 亚洲一区二区三区午夜| 欧美一区二区综合| 97碰在线视频| 久久天天躁狠狠躁夜夜躁2014 | 久久久精品影院| 亚洲蜜桃av| 青青视频免费在线| 国产精品一区二区你懂得| 久久精品青青大伊人av| 午夜精品理论片| 麻豆一区区三区四区产品精品蜜桃| 成人av播放| 久久91精品国产91久久跳| 欧美亚洲免费在线| 7777免费精品视频| 精品久久久久久无码中文野结衣| 日韩精品不卡| 91久久精品在线| 久久久久久国产精品久久| 欧美亚洲色图视频| 国产成人精品久久二区二区91| 国产精品电影网| 欧美日韩国产三区| 久久久久久人妻一区二区三区| 亚洲一区二区三区欧美| 国产精品自拍偷拍| 中文字幕日韩精品一区二区 | 日韩精品无码一区二区三区| 国产不卡视频在线| 人妻久久久一区二区三区| 国产成人在线小视频| 人妻久久久一区二区三区| 久久精品在线播放| 黄色一级片在线看| 久久综合亚洲社区| 蜜桃传媒一区二区| 日韩在线播放av| 精品国偷自产在线视频| 青青在线视频免费| 久久久久网址| 精品视频高清无人区区二区三区| 国产精品视频xxxx| 国产人妻777人伦精品hd| 亚洲综合在线做性| 久久影视中文粉嫩av| 亚洲精品免费在线视频| 久久久久久久香蕉网| 久久精品无码中文字幕| 日韩免费av一区二区| av动漫在线免费观看| 欧美一区二区三区四区在线 | 日韩亚洲一区二区| 日韩视频在线观看国产| 久久久av免费| 91国产丝袜在线放| 激情五月婷婷六月| 亚洲在线观看视频| 国产精品第8页| 国产精品99久久久久久人| 欧美日韩国产不卡在线看| 国产精品久久久久久久久婷婷 | 国产精品视频一区二区三区四| 超碰在线97av| 欧美极品欧美精品欧美图片| 在线观看av的网址| 国产精品女视频| 91精品国产91久久久久久不卡| 精品一区二区三区日本| 手机看片福利永久国产日韩| 九九精品视频在线| y97精品国产97久久久久久| 久久免费视频1| 国产一区二区三区小说| 日韩色妇久久av| 少妇人妻在线视频| 亚洲一区影院| 一区二区精品在线观看| 国产精品人人妻人人爽人人牛| 久久精品午夜福利| 99热国产免费| 成人福利网站在线观看11| 狠狠色噜噜狠狠色综合久| 欧美日韩一区二区三区在线观看免| 日本久久久久久久久| 天天干天天操天天干天天操| 亚洲色成人www永久在线观看| 欧美激情乱人伦| 久久亚洲欧美日韩精品专区| 久久中文字幕国产| 中文字幕日韩精品久久| 亚洲视频在线观看日本a| 亚洲午夜久久久影院伊人| 欧美激情亚洲国产| 在线观看福利一区| 日韩av免费网站| 日本一区二区三区视频免费看| 日本视频一区二区在线观看| 日韩av在线综合| 免费看黄色a级片| 国产精品一区二区三区免费观看 | 日韩亚洲欧美中文在线| 国产成人免费91av在线| 国产精品久久久| 一本久道久久综合| 日韩精品在线观看av| 国产一级二级三级精品| 97碰碰碰免费色视频| 色噜噜狠狠狠综合曰曰曰| 久久成人18免费网站| 婷婷久久五月天| 欧美性受xxx| 99亚洲国产精品| 久久精品亚洲热| 亚洲一卡二卡| 欧美精品第三页| 91精品国产综合久久男男| 国产精品福利网| 奇米精品一区二区三区| 成人免费91在线看| 国产精品久久久久aaaa九色| 性高湖久久久久久久久aaaaa| 毛葺葺老太做受视频| 久久久久久久久爱| 亚洲欧美久久234| 国产一区二区三区四区五区加勒比 | 国产精品免费一区二区三区都可以 | 亚洲精品日韩av| 精品婷婷色一区二区三区蜜桃| 国产精彩视频一区二区| 久久99久久99精品中文字幕 | 明星裸体视频一区二区| 国产福利一区二区三区在线观看| 国产99在线免费| 国产乱子伦农村叉叉叉| 国产精品日本一区二区| 欧美在线影院在线视频| 久久综合久久色| 手机看片日韩国产| 久久久无码中文字幕久...| 国产精品成人aaaaa网站| 精品欧美日韩在线| 久久精品亚洲热| 欧美在线视频导航| 国产精品日韩欧美综合| 黄色动漫在线免费看| 国产精品日日做人人爱| 欧美国产激情视频| 久久国产精品久久久久久久久久| 精品少妇人欧美激情在线观看 | 国产精品户外野外| 国产日韩中文字幕在线| 国产精品久久久久久久久| 国产欧美日韩在线播放| 欧美乱人伦中文字幕在线| 国产日产久久高清欧美一区| 色综合久久88| 91精品在线国产| 日本在线精品视频| 国产精品无码av无码| 国产精品一色哟哟| 热99精品只有里视频精品| 国产精品久久久久久中文字| 国产日韩欧美夫妻视频在线观看| 亚洲欧洲精品在线| 国产精品后入内射日本在线观看|