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

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

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編程設計
  • 合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

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

          欧美日韩精品免费观看视频完整 | 久久久欧美一区二区| 国产女主播一区二区三区| 亚洲一本大道在线| 国产精品夜色7777狼人| 亚洲欧美日韩在线播放| 国产自产2019最新不卡| 久久久最新网址| 国内自拍亚洲| 欧美一区二区三区免费观看| 国产热re99久久6国产精品| 午夜精品久久久久久99热| 狠狠干综合网| 国产精品v欧美精品v日韩精品 | 中文av一区特黄| 精品9999| 好看的日韩av电影| 国产精品igao视频网网址不卡日韩| 午夜精品久久久| 正在播放欧美视频| 亚洲美女视频在线免费观看| 国产亚洲一区二区精品| 国产精品国码视频| 欧美片第1页综合| 欧美激情在线有限公司| 毛片av中文字幕一区二区| 亚洲一区在线观看视频 | 国精品一区二区三区| 国产精品亚洲视频| 欧美日韩一区二区高清| 欧美日本韩国一区| 国产精品xvideos88| 欧美精品不卡| 欧美涩涩网站| 国产视频在线观看一区| 激情六月婷婷综合| 亚洲福利在线视频| 亚洲精品影视在线观看| 在线综合欧美| 久久精品亚洲精品国产欧美kt∨| 久久久久国产一区二区三区四区| 欧美一区二区三区视频在线观看 | 中文欧美字幕免费| 香蕉久久一区二区不卡无毒影院| 校园春色国产精品| 蜜臀91精品一区二区三区| 欧美黄色影院| 国产综合久久久久影院| 一区二区三区产品免费精品久久75| 亚洲一区尤物| 麻豆成人在线观看| 国内成人精品视频| 亚洲综合日韩| 欧美日韩不卡在线| 亚洲国产欧美精品| 久久理论片午夜琪琪电影网| 欧美日韩www| 国产欧美一区二区三区沐欲| 一区二区三区国产精华| 欧美高清在线观看| 亚洲电影有码| 久久综合久久综合久久综合| 国产欧美日韩在线| 欧美怡红院视频| 国产精品爽爽爽| 亚洲欧美在线一区| 欧美日韩国产综合一区二区| 亚洲电影av在线| 久久先锋资源| 亚洲国产欧美在线| 欧美日韩免费观看一区| 亚洲免费成人av电影| 欧美日韩在线亚洲一区蜜芽| 99视频有精品| 国产亚洲一区在线| 久久嫩草精品久久久精品| 亚洲国产导航| 欧美区二区三区| 欧美另类视频在线| 91久久国产综合久久| 欧美伦理视频网站| 亚欧成人在线| 亚洲国产mv| 国产精品美女久久久久久2018 | 国产精品久久午夜夜伦鲁鲁| 欧美在线视频在线播放完整版免费观看 | 欧美一级播放| 最新亚洲激情| 国产一区久久久| 欧美日韩精品欧美日韩精品| 久久国产色av| 欧美在线视频日韩| 欧美一区成人| 在线视频日韩精品| 一区二区三区鲁丝不卡| 最新高清无码专区| 一区精品久久| 亚洲电影免费观看高清| 国产区亚洲区欧美区| 国产精品毛片一区二区三区| 欧美婷婷久久| 国产精品伦一区| 国产女主播视频一区二区| 国产精品拍天天在线| 国产欧美日韩精品a在线观看| 国产精品人人爽人人做我的可爱 | 欧美主播一区二区三区| 亚洲一区在线观看视频| 在线成人h网| 一本久道久久综合中文字幕| 日韩天堂av| 久久大综合网| 欧美另类人妖| 国产日韩在线播放| 在线观看欧美激情| 国产精品99久久久久久宅男| 午夜精品视频在线| 久久男女视频| 国产欧美日韩在线| 亚洲精品三级| 久久人人97超碰国产公开结果| 欧美高清在线| 国产自产女人91一区在线观看| 亚洲精品少妇| 久久天堂成人| 国产揄拍国内精品对白| 亚洲一区精品在线| 欧美日韩视频一区二区| 精品成人在线视频| 亚洲综合电影一区二区三区| 欧美激情视频在线播放| 欧美日韩精品一区二区| 国产一区二区三区高清播放| 亚洲国产黄色片| 美女在线一区二区| 加勒比av一区二区| 久久综合色婷婷| 在线看欧美视频| 欧美sm视频| 亚洲毛片av在线| 国产精品久久一卡二卡| 午夜欧美视频| 国产美女精品一区二区三区 | 欧美精品福利在线| 日韩手机在线导航| 国产精品自在欧美一区| 性感少妇一区| 亚洲人成人一区二区在线观看| 欧美日韩视频一区二区| 亚洲一区中文字幕在线观看| 国产麻豆9l精品三级站| 玖玖玖国产精品| 亚洲视频第一页| 亚洲高清激情| 国产日产亚洲精品系列| 欧美伦理视频网站| 麻豆av福利av久久av| 亚洲网站在线观看| 亚洲精品国产精品乱码不99按摩| 国产精品免费观看在线| 欧美日韩在线免费| 免费成人毛片| 老司机免费视频一区二区三区| 亚洲一区中文| 一区二区三区www| 日韩视频一区二区三区| 亚洲日本成人女熟在线观看| 国产一区二区三区在线观看免费 | 国产精品天天摸av网| 欧美激情精品久久久久| 久久女同互慰一区二区三区| 欧美诱惑福利视频| 久久久久国色av免费看影院| 亚洲综合成人婷婷小说| 亚洲综合日韩在线| 欧美在线高清| 久久亚洲不卡| 欧美日韩精品在线| 国产精品第一区| 国产精品久久久久婷婷| 国产亚洲欧美日韩日本| 在线看成人片| 亚洲综合久久久久| 另类图片国产| 国产精品成人一区二区三区吃奶| 国产精品狼人久久影院观看方式| 国产欧美视频在线观看| 亚洲大胆女人| 午夜欧美精品| 欧美日韩不卡合集视频| 精品99一区二区三区| 亚洲欧美在线观看| 欧美日韩成人激情| 亚洲第一在线综合网站| 亚洲免费网址| 欧美精品一区二区蜜臀亚洲| 国产精品影音先锋| 亚洲伊人一本大道中文字幕| 久久婷婷丁香| 亚洲国产成人久久综合一区|