日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

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

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

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        野花国产精品入口| 国产精品高潮呻吟久久| 极品av少妇一区二区| 亚洲日本一区二区| 欧美亚洲一区在线| 国产精品久久久久高潮| 亚洲影院色无极综合| 国产精品久久久久久久久久久久久久| 国产精品第一区| 欧美成人精品h版在线观看| 亚洲综合色视频| 欧美连裤袜在线视频| 欧美久久久久久久久久| 国产精品羞羞答答xxdd| 午夜精品99久久免费| 亚洲精品中文字幕女同| 欧美午夜视频一区二区| 国产精品腿扒开做爽爽爽挤奶网站| 国产美女高潮久久白浆| 欧美视频在线观看一区| 亚洲精品日韩精品| 在线精品视频免费观看| 在线观看福利一区| 久久麻豆一区二区| 久久国产直播| 你懂的国产精品| 国产欧美 在线欧美| 国产精品免费看久久久香蕉| 亚洲大片av| 欧美精品网站| 国产情人综合久久777777| 亚洲一区二区精品视频| 欧美在线观看一区| 欧美一级大片在线免费观看| 亚洲自拍另类| 国产精品一区免费观看| 亚洲欧美日韩网| 国产精品chinese| 欧美激情一区二区三区蜜桃视频| 欧美三级资源在线| 黑人中文字幕一区二区三区| 国产精品久久9| 美女精品在线| 国产综合色产在线精品| 亚洲破处大片| 国产精品一区二区在线观看| 一区二区三区**美女毛片| 欧美高清日韩| 日韩午夜免费| 欧美日韩一视频区二区| 久久久国产91| 在线观看亚洲精品| 国产伪娘ts一区| 日韩一级在线| 欧美精品乱人伦久久久久久| 欧美女主播在线| 亚洲经典自拍| 久久美女性网| 久久成人人人人精品欧| 国产精品99久久久久久有的能看| 欧美另类一区二区三区| 欧美三级欧美一级| 老司机午夜精品视频在线观看| 在线一区二区三区四区| 亚洲国产日韩欧美| 免费在线观看日韩欧美| 亚洲人成绝费网站色www| 亚洲精品一区二区三区婷婷月| 久久精品国产77777蜜臀| 亚洲少妇在线| 亚洲欧美另类中文字幕| 亚洲福利久久| 伊人成人开心激情综合网| 在线观看视频欧美| 亚洲精品一区在线观看香蕉| 国外成人在线视频| 亚洲视频精品| 久久综合电影| 国产一区二区三区免费观看| 欧美午夜精品久久久久免费视| 久久精品国产99| 国产亚洲精品bv在线观看| 久久国产直播| 亚洲欧美视频| 国产精品一区二区久久| 影音国产精品| 欧美亚洲视频在线看网址| 亚洲日本视频| 欧美综合二区| 巨乳诱惑日韩免费av| 久久黄金**| 狠狠色狠狠色综合日日91app| 欧美中文在线免费| 久久久人人人| 免费中文字幕日韩欧美| 欧美精品日韩| 国外成人性视频| 欧美成人午夜激情| 欧美精选午夜久久久乱码6080| 欧美视频在线免费看| 老司机精品视频一区二区三区| 亚洲一区区二区| 99国产一区二区三精品乱码| 国产精品区一区二区三区| 国产精品系列在线播放| 国产精品第十页| 欧美人与性动交α欧美精品济南到| 亚洲欧洲美洲综合色网| 久久全国免费视频| 欧美色精品在线视频| 亚洲一区影院| 国产日韩综合| 99精品欧美一区| 亚洲精品国产精品国自产观看浪潮| 欧美大片va欧美在线播放| 一本一本大道香蕉久在线精品| 欧美激情欧美狂野欧美精品| 亚洲婷婷综合久久一本伊一区| 欧美精品色网| 亚洲免费网站| 亚洲影院高清在线| 国产视频亚洲| 激情久久综合| 久久久综合精品| 久久久综合香蕉尹人综合网| 久久精品伊人| 午夜视频一区| 一本色道久久综合狠狠躁篇怎么玩| 久久成人av少妇免费| 夜夜嗨av一区二区三区中文字幕| 欧美日韩99| 国产精品腿扒开做爽爽爽挤奶网站| 国产无遮挡一区二区三区毛片日本| 欧美一区二区三区免费在线看| 欧美精品一区二区精品网| 亚洲免费在线| 中文一区字幕| 影音先锋中文字幕一区二区| 国产精品久久网站| 亚洲区欧美区| 国外成人性视频| 国产私拍一区| 国产美女精品一区二区三区| 国产精品亚洲激情| 午夜在线精品偷拍| 国产精品一二一区| 国产区欧美区日韩区| 亚洲毛片播放| 欧美在线91| 国产精品福利av| 亚洲免费黄色| 国产精品入口尤物| 亚洲视频在线播放| 久久久久久久久久久一区| 国外成人免费视频| 日韩午夜剧场| 国产精品成人在线| 亚洲女同在线| 亚洲午夜免费福利视频| 欧美视频日韩视频在线观看| 国产一区日韩一区| 男人天堂欧美日韩| 国产精品国产三级国产普通话99| 在线观看亚洲精品|