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

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

MA2552代做、代寫Matlab編程語言

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


MA2552 Introduction to Computing (DLI) 2023/24

Computational Project

Aims and Intended Learning Outcomes

The aims of the Project are to describe methods for solving given computational problems, develop and test Matlab code implementing the methods, and demonstrate application

of the code to solving a specific computational problem. In this Project, you be will be required to demonstrate

• ability to investigate a topic through guided independent research, using resources

available on the internet and/or in the library;

• understanding of the researched material;

• implementation of the described methods in Matlab;

• use of the implemented methods on test examples;

• ability to present the studied topic and your computations in a written Project Report.

Plagiarism and Declaration

• This report should be your independent work. You should not seek help from other

students or provide such help to other students. All sources you used in preparing your

report should be listed in the References section at the end of your report and referred

to as necessary throughout the report.

• Your Project Report must contain the following Declaration (after the title page):

DECLARATION

All sentences or passages quoted in this Project Report from other people’s work have

been specifically acknowledged by clear and specific cross referencing to author, work and

page(s), or website link. I understand that failure to do so amounts to plagiarism and

will be considered grounds for failure in this module and the degree as a whole.

Name:

Signed: (name, if submitted electronically)

Date:

Project Report

The report should be about 6-8 pages long, written in Word or Latex. Equations should

be properly formatted and cross-referenced, if necessary. All the code should be included in

the report. Copy and paste from MATLAB Editor or Command Window and choose ‘Courier

New’ or another fixed-width font. The Report should be submitted via Blackboard in a single

file (Word document or Adobe PDF) and contain answers to the following questions:

1

MA2552 Introduction to Computing (DLI) 2023/24

Part 0: Context

Let f(x) be a periodic function. The goal of this project is to implement a numerical method

for solving the following family of ordinary differential equations (O.D.E):

an

d

nu(x)

dxn

+ an−1

d

n−1u(x)

dxn−1

+ . . . + a0u(x) = f(x), (1)

where ak, k = 0, · · · , n, are real-valued constants. The differential equation is complemented

with periodic boundary conditions:

d

ku(−π)

dxk

=

d

ku(π)

dxk

for k = 0, · · · , n − 1.

We aim to solve this problem using a trigonometric function expansion.

Part 1: Basis of trigonometric functions

Let u(x) be a periodic function with period 2π. There exist coefficients α0, α1, α2, . . ., and

β1, β2, . . . such that

u(x) = X∞

k=0

αk cos(kx) +X∞

1

βk sin(kx).

The coefficients αk and βk can be found using the following orthogonality properties:

Z π

−π

cos(kx) sin(nx) dx = 0, for any k, n

Z π

−π

cos(kx) cos(nx) dx =

ɽ**;?**0;

ɽ**;?**1;

0 if k ̸= n

π if k = n ̸= 0

2π if k = n = 0.

Z π

−π

sin(kx) sin(nx) dx =

(

0 if k ̸= n

π if k = n ̸= 0.

1. Implement a function that takes as an input two function handles f and g, and an

array x, and outputs the integral

1

π

Z π

−π

f(x)g(x) dx,

using your own implementation of the Simpson’s rule scheme. Corroborate numerically

the orthogonality properties above for different values of k and n.

2. Show that

αk =

(

1

π

R π

−π

u(x) cos(kx) dx if k ̸= 0

1

R π

−π

u(x) dx if k = 0

βk =

1

π

Z π

−π

u(x) sin(kx) dx.

2

MA2552 Introduction to Computing (DLI) 2023/24

3. Using question 1 and 2, write a function that given a function handle u and an integer

m, outputs the array [α0, α1 . . . , αm, β1, . . . , βm].

4. Write a function that given an array [α0, α1 . . . , αm, β1, . . . , βm], outputs (in the form

of an array) the truncated series

um(x) := Xm

k=0

αk cos(kx) +Xm

k=1

βk sin(kx), (2)

where x is a linspace array on the interval [−π, π].

5. Using the function from question 3, compute the truncated series um(x) of the following

functions:

• u(x) = sin3

(x)

• u(x) = |x|

• u(x) = (

x + π, for x ∈ [−π, 0]

x − π, for x ∈ (0, π]

,

and using question 4, plot u(x) and um(x) for different values of m.

6. Carry out a study of the error between u(x) and um(x) for ∥u(x)−um(x)∥p with p = 2

and then with p = ∞. What do you observe?

Part 2: Solving the O.D.E

Any given periodic function u(x) can be well approximated by its truncate series expansion (2) if m is large enough. Thus, to solve the ordinary differential equation (1)

one can approximate u(x) by um(x):

u(x) ≈

Xm

k=0

αk cos(kx) +Xm

k=1

βk sin(kx),

Since um(x) is completely determined by its coefficients [α0, α1 . . . , αm, β1, . . . , βm],

to solve (1) numerically, one could build a system of equations for determining these

coefficients.

7. Explain why under the above approximation, the boundary conditions of (1) are automatically satisfied.

8. We have that

dum(x)

dx =

Xm

k=0

γk cos(kx) +Xm

k=1

ηk sin(kx)

Write a function that takes as input the integer m, and outputs a square matrix D that

maps the coefficients [α0, . . . , αm, β1, . . . , βm] to the coefficients [γ0, . . . , γm, η1, . . . , ηm].

3

MA2552 Introduction to Computing (DLI) 2023/24

9. Write a function that given a function handler f, an integer m, and the constants

ak, solves the O.D.E. (1). Note that some systems might have an infinite number of

solutions. In that case your function should be able identify such cases.

10. u(x) = cos(sin(x)) is the exact solution for f(x) = sin(x) sin(sin(x))−cos(sin(x)) (cos2

(x) + 1),

with a2 = 1, a0 = −1 and ak = 0 otherwise. Plot the p = 2 error between your numerical solution and u(x) for m = 1, 2, . . .. Use a log-scale for the y-axis. At what rate

does your numerical solution converge to the exact solution?

11. Show your numerical solution for different f(x) and different ak of your choice.

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

 

掃一掃在手機打開當前頁
  • 上一篇:代寫CE335編程、代做Python,C++程序設計
  • 下一篇:COMP528代寫、代做c/c++編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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九色偷拍| 精品国产网站地址| 国产精品午夜av在线| 亚洲不卡中文字幕| 成人91免费视频| 欧洲精品一区二区三区久久| 一区二区精品在线观看| 日韩中文字幕精品| 人偷久久久久久久偷女厕| 91精品国产综合久久香蕉| 一区二区三区观看| 91黄在线观看| 国产精品久久精品国产| 日av中文字幕| 亚洲精品欧美精品| 国产精品成人免费视频| 国产成人免费电影| 日韩专区在线播放| 日韩一区av在线| 国产精品毛片va一区二区三区 | 秋霞在线一区二区| 久久精品人人爽| 亚洲一区精彩视频| 日本乱人伦a精品| 国产欧美在线观看| 日韩av电影中文字幕| 国产成人精品免费看在线播放| 久久99精品久久久久久三级| 尤物一区二区三区| 欧美巨猛xxxx猛交黑人97人| 99在线免费视频观看| 国产黄视频在线| 欧美激情中文字幕乱码免费| 国产精品天天狠天天看| 一区二区日本伦理| 91精品久久久久久久久久久久久| 中文字幕一区综合| 久久综合婷婷综合| 日本不卡一二三区| 久久久久中文字幕| 激情五月五月婷婷| 亚洲精品国产系列| 国产精品久久久久久搜索| 国产欧美日韩免费看aⅴ视频| 国产99久久精品一区二区 | 欧美视频免费看欧美视频| 日韩视频一二三| 成人免费视频a| 免费日韩中文字幕| 久久在线精品视频| 国产乱码精品一区二区三区中文| 欧美大片欧美激情性色a∨久久 | 中文字幕成人一区| 国产在线青青草| 一本久久a久久精品vr综合| 日本三日本三级少妇三级66| 亚洲自拍欧美另类| 国产在线精品成人一区二区三区| 国产精品视频在线免费观看 | 日韩视频免费在线| 日韩视频精品| 97成人精品视频在线观看| 久久久欧美精品| 国产一区二区三区四区五区加勒比 | 国产精品av在线播放| 欧美大成色www永久网站婷| 黄色一级大片免费| 久久国产精品久久| 青青草精品视频在线| 欧美麻豆久久久久久中文| 欧美亚洲另类在线| 欧美精品激情视频| av免费观看国产| 日本成人黄色免费看| 国产精品美女免费视频| 欧美成人一区二区在线观看| 欧美精品福利在线| 91久久综合亚洲鲁鲁五月天| 亚洲图片都市激情| 久久这里只有精品23| 久久99热精品| 久久久久久久久亚洲| 日韩国产一级片| 日韩亚洲欧美成人| 日韩欧美黄色大片| 久久久www成人免费精品| 视频在线一区二区三区| 91九色丨porny丨国产jk| 午夜啪啪福利视频| 国产视色精品亚洲一区二区| 久久精视频免费在线久久完整在线看 | 麻豆av一区二区三区久久| 久久久免费高清电视剧观看| 久久久久久97| 国产精品777| 日本在线播放不卡| 国产老熟妇精品观看| 精品丰满人妻无套内射| 国产精品一区二区性色av| 色综合影院在线观看| 日韩中文字幕在线观看| 国产一区二区三区乱码| 都市激情久久久久久久久久久 | 好吊色欧美一区二区三区| 国产成+人+综合+亚洲欧美丁香花| 欧美一级在线播放| 欧洲在线视频一区| 欧美精品在线观看| 久久99九九| 日韩精品欧美在线| 欧美xxxx18国产| www.日本久久久久com.| 国产三级中文字幕| 精品乱码一区二区三区| 国产成人精品视| 国产精品av网站| 91精品国产综合久久香蕉922| 欧美日韩大片一区二区三区| 国产精品美女主播在线观看纯欲 | 久久99精品久久久久久琪琪| 国产精品一区二区久久久| 欧美国产视频一区| 一本久久a久久精品vr综合| 国产女人18毛片| 青青青青草视频| 国产日韩精品在线播放| 激情视频在线观看一区二区三区| 欧美极品第一页| 2019日韩中文字幕mv| 亚洲 日韩 国产第一区| 国产精品久久久久久久久| 久热精品在线视频| 亚洲一区亚洲二区亚洲三区| 久久综合毛片| 欧美精品在线播放| 久久久免费电影| 午夜精品久久久久久久99热浪潮| 国产综合在线观看视频| 欧美日韩精品久久| 国产一区免费视频| 99视频在线免费播放| 草b视频在线观看| 99国产在线视频| 国产精品一区免费观看| 国产欧美日韩视频| 国产精品久久久久久搜索| 日韩在线综合网| 免费在线a视频| 97人人模人人爽视频一区二区| 国产一区二区视频在线观看 | 日韩中文字幕三区| 热99精品只有里视频精品| 欧美又大又粗又长| 国产精品一区二区三区毛片淫片 | 久久精品香蕉视频| 男人的天堂狠狠干| 人人爽久久涩噜噜噜网站| 精品久久久久久无码国产| 成人免费a级片| 国产精品9999久久久久仙踪林| 99视频免费观看蜜桃视频| 精品国产免费久久久久久尖叫| 国产日韩视频在线播放| 久久精品国产亚洲精品| 日韩精品视频久久| 国产精品普通话| av免费观看久久| 热99久久精品| 国产精品久久久久久久久电影网 | 免费av网址在线| 久久露脸国产精品| 久久精品视频91| 色欲色香天天天综合网www| 免费亚洲一区二区| 欧美激情亚洲另类| 91精品黄色| 国产又黄又猛视频| 热久久视久久精品18亚洲精品| 欧美成人在线免费| 久久国产精品久久| 99在线观看| 国产一区二区三区高清| 亚洲高清123| 精品国产一区二区三区四区精华| 久久亚洲综合网| 国模视频一区二区三区| 日日噜噜噜夜夜爽爽| 久久亚洲精品国产亚洲老地址| 91国内揄拍国内精品对白| 精品无人乱码一区二区三区的优势| 亚洲精品成人久久久998| 国产精品高清网站| 日韩亚洲欧美成人| 国产极品jizzhd欧美| 精品一区二区三区国产| 欧美两根一起进3p做受视频| 日本一区二区在线|