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爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          小嫩嫩精品导航| 亚洲图片在线| 亚洲精品免费一二三区| 亚洲欧洲日本专区| 日韩视频三区| 欧美一区=区| 久久理论片午夜琪琪电影网| 国产日韩欧美综合一区| 亚洲国产另类 国产精品国产免费| 激情校园亚洲| 亚洲另类一区二区| 在线亚洲成人| 欧美一区二区三区四区在线观看 | 亚洲无人区一区| 在线视频日本亚洲性| 亚洲制服少妇| 欧美成人伊人久久综合网| 欧美激情一区二区| 国产亚洲一区二区在线观看| 91久久一区二区| 欧美一区二区三区婷婷月色| 免费观看在线综合色| 国产精品v欧美精品v日本精品动漫| 国产一区美女| 亚洲欧美激情视频| 欧美精品91| 国产综合精品| 亚洲欧美文学| 欧美日韩在线亚洲一区蜜芽| 狠狠噜噜久久| 欧美一区视频在线| 国产精品白丝av嫩草影院| 亚洲高清视频的网址| 欧美一区二区三区视频免费播放| 欧美精品xxxxbbbb| 在线播放国产一区中文字幕剧情欧美| 亚洲视频欧美在线| 欧美日韩免费视频| 亚洲国产裸拍裸体视频在线观看乱了中文| 亚洲欧美www| 欧美片在线观看| 91久久精品一区二区别| 久久精品视频在线免费观看| 国产精品蜜臀在线观看| 一区二区精品在线观看| 欧美国产视频在线观看| 亚洲大片精品永久免费| 久久影音先锋| 一色屋精品视频在线观看网站| 欧美一区二区| 国产一区二区三区高清在线观看| 亚洲欧美美女| 国产精品中文在线| 午夜精品短视频| 国产精品久久久久久五月尺| 亚洲精品自在久久| 欧美激情欧美狂野欧美精品 | 欧美激情综合五月色丁香| 亚洲国产精品电影| 欧美a级片网| 亚洲国产aⅴ天堂久久| 免费中文日韩| 亚洲精选在线| 欧美性猛交一区二区三区精品| 一本久久a久久精品亚洲| 欧美日韩在线亚洲一区蜜芽| 亚洲一区二区三区涩| 国产精品尤物福利片在线观看| 亚洲欧美一区二区三区在线 | 亚洲图片激情小说| 国产精品色午夜在线观看| 欧美一区国产一区| 在线观看亚洲视频| 欧美日韩aaaaa| 亚洲在线一区二区三区| 国产一区视频观看| 欧美大片一区二区| 亚洲天堂黄色| 影视先锋久久| 欧美视频日韩视频| 欧美在线看片| 亚洲欧洲精品一区二区精品久久久 | 欧美高清视频在线| 亚洲视频电影在线| 国产综合欧美| 欧美日韩一本到| 久久成人国产精品| 亚洲欧洲一区| 国产视频综合在线| 欧美日韩国产小视频| 欧美伊久线香蕉线新在线| 亚洲国产精品一区| 亚洲国产日韩在线| 国产一区二区三区直播精品电影 | 亚洲精品国产视频| 亚洲欧美一区二区三区极速播放 | 欧美黄色精品| 亚洲欧美综合国产精品一区| 极品av少妇一区二区| 欧美日韩在线三级| 免费成人黄色| 久久超碰97人人做人人爱| 一区二区高清视频| 亚洲国产乱码最新视频| 国产日韩精品一区观看| 欧美日韩在线播放一区| 久久综合一区二区| 亚洲欧美日韩精品久久奇米色影视 | av不卡在线观看| 国产精品一区二区三区免费观看| 欧美日本高清视频| 欧美色视频在线| 红桃视频成人| 欧美日韩一区综合| 欧美国产高潮xxxx1819| 欧美日韩久久不卡| 亚洲精品一区二区三区福利| 很黄很黄激情成人| 国内激情久久| 国产一区二区三区在线观看视频| 国产精品sss| 国产精品久久久久9999吃药| 欧美不卡视频一区| 久久性天堂网| 老司机精品福利视频| 久久久久亚洲综合| 久久久www| 久热成人在线视频| 免费在线视频一区| 美日韩在线观看| 蜜臀a∨国产成人精品| 免费一区视频| 免费看精品久久片| 欧美韩日视频| 欧美日韩国产成人精品| 欧美日韩一区二区三区免费| 欧美日韩一区二区视频在线| 欧美日韩一区三区| 国产欧美日韩激情| 国产亚洲aⅴaaaaaa毛片| 国内外成人免费视频| 在线观看日韩专区| 亚洲美女视频| 亚洲伊人色欲综合网| 欧美一区亚洲一区| 老巨人导航500精品| 欧美成人资源| 欧美性猛片xxxx免费看久爱| 国产精品美女久久久| 国产日本欧美一区二区三区| 国产最新精品精品你懂的| 一区二区三区在线高清| 日韩视频―中文字幕| 亚洲男人影院| 久久亚洲私人国产精品va| 欧美国内亚洲| 国产美女精品视频免费观看| 在线观看不卡av| 一区二区三区视频观看| 久久aⅴ国产紧身牛仔裤| 欧美+亚洲+精品+三区| 国产精品99一区| 黄色亚洲免费| 夜夜嗨av一区二区三区网站四季av| 亚洲一二三区在线| 久久夜色精品一区| 国产精品v亚洲精品v日韩精品| 国产日韩专区在线| 日韩视频专区| 久久视频免费观看| 欧美视频中文在线看 | 亚洲一区免费| 榴莲视频成人在线观看| 国产精品伦理| 亚洲精品欧洲精品| 久久久久久久久久久一区| 欧美日韩在线一区二区| 伊人成人网在线看| 亚洲综合欧美| 欧美国产精品人人做人人爱| 国产亚洲欧美在线| 亚洲视频第一页| 欧美巨乳在线观看| 在线成人性视频| 欧美在线免费一级片| 欧美日韩一区三区四区| 亚洲国产精品悠悠久久琪琪| 欧美一区二区国产| 国产精品每日更新| 99精品热6080yy久久| 久久久久久噜噜噜久久久精品| 国产精品久久久久天堂| 亚洲精品日本| 欧美经典一区二区三区| 亚洲第一在线综合网站| 久久久久久久成人| 国语自产在线不卡| 久久精品视频va| 国产一区99| 欧美在线欧美在线|