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

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

代做MA2552、代寫Matlab編程設計

時間:2023-12-15  來源:合肥網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 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

 

掃一掃在手機打開當前頁
  • 上一篇:INT3095代做、代寫Artificial Intelligence語言編程
  • 下一篇:代寫MGMT20005、代做Decision Analysis程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    北条麻妃一区二区三区中文字幕| 久久久久久久香蕉网| 成人黄动漫网站免费| 久久色在线播放| 日韩精品无码一区二区三区| 久久久水蜜桃| 午夜精品久久久久久久99热浪潮| 国产乱码精品一区二区三区中文| 国产精品第三页| 男人添女人下部视频免费| 视频在线观看99| 欧美一级免费视频| 777久久精品一区二区三区无码| 欧美激情视频在线观看| 国产一区红桃视频| 国产精品久久一| 人偷久久久久久久偷女厕| 国产成人自拍视频在线观看| 午夜精品一区二区三区av| 91精品国产免费久久久久久| 亚洲字幕在线观看| 99在线免费视频观看| 亚洲伊人久久综合| 国产精品91免费在线| 性日韩欧美在线视频| 国产精品99久久久久久www| 亚洲欧洲精品在线| 91精品视频播放| 色噜噜狠狠一区二区三区| 久久久精彩视频| 任我爽在线视频精品一| 久久riav| 欧美国产综合视频| 久久伊人91精品综合网站| 国产中文欧美精品| 一区二区三区欧美成人| 成人av中文| 色哺乳xxxxhd奶水米仓惠香| 日韩在线视频免费观看高清中文 | 麻豆传媒一区二区| 国产精品大片wwwwww| 国产一区二区在线观看免费播放| 欧美精品久久久久a| 91精品国产综合久久男男| 日韩精品久久久| 久热精品视频在线| 国产欧美一区二区三区另类精品 | 久久久久国产精品免费网站| 97免费在线视频| 日韩av影视| 国产精品黄色av| 99精品99久久久久久宅男| 日本福利视频导航| 国产精品久久久久免费a∨| 国产欧美在线看| 日韩av免费在线看| 国产精品入口日韩视频大尺度| 黄在线观看网站| 欧美激情综合色| 久久国产一区| 国产一区二区丝袜高跟鞋图片| 在线天堂一区av电影| 国产不卡一区二区视频| 欧美人与动牲交xxxxbbbb| 精品国产乱码久久久久软件| 97人人模人人爽人人少妇| 青青影院一区二区三区四区| 精品国产一区二区三区麻豆小说 | 久久99热精品| 久久一区二区三区av| 欧美 日本 亚洲| 亚洲一区二区三区在线免费观看| 久久久精品视频成人| 99久久久精品视频| 欧美精品卡一卡二| 亚洲精品高清视频| 国产精品久久久久久久午夜| 91观看网站| 国产免费视频传媒| 欧美无砖专区免费| 亚洲精品乱码久久久久久自慰| 国产精品美女www| 国产传媒久久久| 分分操这里只有精品| 日韩久久久久久久| 欧美日韩国产999| 日韩在线观看精品| 99爱精品视频| 国产一区不卡在线观看| 日韩视频第二页| 亚洲国产日韩欧美| 久久国产精品久久久| www日韩欧美| 久久频这里精品99香蕉| 国产日韩精品久久| 欧美在线不卡区| 亚洲国产一区二区三区在线 | 日韩av三级在线| 欧美精品久久久久久久免费观看| 久久久精品视频在线观看| 久久影院理伦片| av在线观看地址| 国产欧美精品一区二区三区| 欧美性大战久久久久xxx| 日本a在线免费观看| 午夜精品一区二区三区视频免费看| 久久久久国产精品免费| 久久亚洲精品成人| 国产精品久久电影观看| 日韩一区av在线| 国产成人激情视频| 91精品视频免费| 99久久免费观看| 北条麻妃在线一区| 成人精品一区二区三区电影黑人| 免费av一区二区三区| 欧美二区在线看| 精品欧美日韩| 欧美高清性xxxxhdvideosex| 欧洲黄色一级视频| 欧美亚洲第一页| 欧美日韩一区二区视频在线观看| 欧日韩免费视频| 欧美日韩另类综合| 欧美大陆一区二区| 妓院一钑片免看黄大片| 欧美激情一区二区三区在线视频| 日本a视频在线观看| 日韩精品一区二区三区色欲av| 日韩av免费在线播放| 日本a视频在线观看| 日本精品国语自产拍在线观看| 日本一区免费在线观看| 日韩av在线播放不卡| 青草青草久热精品视频在线观看 | 久久人人看视频| 77777亚洲午夜久久多人| 国产精品18久久久久久首页狼 | 欧美怡红院视频一区二区三区| 日韩国产一级片| 欧美视频第一区| 国产一区二区三区高清| 国产精品制服诱惑| 国产精彩精品视频| 久久久久久久av| 国产精品爽爽爽| 欧美激情小视频| 色综合666| 欧美日韩一区二区三区在线观看免 | 国产精品久久久久久久免费大片| 国产精品国产三级国产专播精品人| 久久亚洲精品一区| 亚洲精品成人久久久998| 欧美一级淫片播放口| 青青在线免费观看| 国产系列第一页| 国产精品自拍首页| 久久免费视频网站| 精品久久久av| 色综合色综合网色综合| 日韩av成人在线观看| 妓院一钑片免看黄大片| 国产精品香蕉av| 久久超碰亚洲| 欧美成年人视频| 日本在线视频www色| 男人舔女人下面高潮视频| 国产女人水真多18毛片18精品| 68精品久久久久久欧美| 日韩在线视频网| 欧美精品videos| 日韩av大全| 蜜臀久久99精品久久久酒店新书| 成人中文字幕在线观看| 视频在线观看99| 国产99在线|中文| 色欲色香天天天综合网www| 免费黄色福利视频| 91国产高清在线| 国产精品大全| 日本精品免费在线观看| 国产女主播一区二区| 日韩中文理论片| 亚洲精品中文字幕无码蜜桃| 人体内射精一区二区三区| 国产欧美日韩中文| 日韩视频在线免费| 岛国视频一区| 国产精品一区视频网站| 久久久久久久爱| 亚洲精品欧美一区二区三区| 黄频视频在线观看| 国产av熟女一区二区三区| 伊人久久大香线蕉精品| 欧美凹凸一区二区三区视频| 7777精品久久久久久| 色综合久久天天综线观看| 欧美日韩一区在线播放| 久久综合久久色| 久久99久久99精品免观看粉嫩|