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

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代做MA2552、代寫(xiě)Matlab編程設(shè)計(jì)

時(shí)間:2023-12-15  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


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.

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:INT3095代做、代寫(xiě)Artificial Intelligence語(yǔ)言編程
  • 下一篇:代寫(xiě)MGMT20005、代做Decision Analysis程序
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢(qián)_專(zhuān)業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢(xún)服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢(xún)服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢(xún)外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢(xún)外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類(lèi)仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢(xún)服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢(xún)服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    91免费看国产| 一级黄色免费在线观看| 国产精品二区在线| 亚洲精品人成| 国产精品亚洲天堂| 欧美日韩高清区| 国产一区二区丝袜| 国产精品裸体瑜伽视频| 欧美最猛性xxxx| 9191国产视频| 色播亚洲婷婷| 国产成人综合一区| 欧美一区二区福利| 91国产一区在线| 午夜精品久久久久久久99热| 99久久精品久久久久久ai换脸| 一区二区精品在线| 97精品一区二区三区| 一区二区视频在线观看| 国产精品亚洲a| 亚洲欧洲日本国产| 国产夫妻自拍一区| 日韩美女在线观看| 久久久国产视频| 免费观看精品视频| 精品久久久久久一区| 国产九色精品| 亚洲精品电影在线一区| 国产肥臀一区二区福利视频| 秋霞无码一区二区| 国产精品免费一区二区三区都可以| 欧美 日韩 国产在线观看| 国产精品电影观看| 国产伦精品一区二区三区视频孕妇| 中文字幕一区二区三区四区五区| av无码精品一区二区三区| 无码日韩人妻精品久久蜜桃| 久久久久中文字幕| 黄色片视频在线播放| 蜜臀久久99精品久久久无需会员| 成人h视频在线| 色阁综合av| 国产精品欧美日韩| 成人精品网站在线观看| 日日摸日日碰夜夜爽av| 久久久国产精品x99av| 国产欧美日韩丝袜精品一区| 午夜精品短视频| 精品国产一区二区三区久久| 黄色大片在线免费看| 亚洲最大av在线| 色黄久久久久久| 国产精品直播网红| 日韩免费av在线| 久久国产精品视频| 91国语精品自产拍在线观看性色| 欧美自拍视频在线| 欧美激情久久久久| 久久精品国产精品亚洲色婷婷| 免费久久久一本精品久久区| 亚洲狠狠婷婷综合久久久| 久久精品国产亚洲精品2020| 成人精品视频久久久久| 日韩视频在线观看视频| 久久成人免费视频| 国产成人精品电影久久久| 国产一区视频在线| 日本亚洲欧美成人| 国产999在线| 久久久精品日本| 99精品视频播放| 国内精品视频在线| 色噜噜色狠狠狠狠狠综合色一| 精品免费日产一区一区三区免费 | 国产精品一区二区久久久| 日韩区国产区| 九九热r在线视频精品| 久久久久久久久久久免费精品| 国产女同一区二区| 欧美专区日韩视频| 亚洲综合精品一区二区| 久久九九亚洲综合| 久久免费精品日本久久中文字幕| 国产日韩欧美一二三区| 欧洲精品久久久| 午夜精品蜜臀一区二区三区免费| 欧美成人在线免费| 日韩在线观看免费| 久久天天狠狠| 97精品在线观看| 国产精品一区二区三区毛片淫片| 欧美在线一区二区视频| 性日韩欧美在线视频| 一区二区三区四区在线视频| 国产精品国产精品国产专区不卡 | 国产视频一区二区视频| 欧美性资源免费| 日本欧美色综合网站免费| 一本久道综合色婷婷五月| 国产精品国产三级国产专区53| 国产成人精品自拍| 久久久噜噜噜久噜久久| 久久久久久www| 国产精品69页| 成人国产在线看| 国产精品一区二区三| 国产一区二区三区色淫影院 | 久久99精品国产一区二区三区 | 久久久久久久久久久一区| 久久久人人爽| 成人欧美一区二区三区黑人免费| 国产一区一区三区| 国产系列第一页| 国产一区高清视频| 国产一区二区在线免费| 精品一区二区国产| 免费国产a级片| 国产天堂在线播放| 国产欧美精品一区二区三区介绍 | 久久av在线播放| 欧美精品少妇videofree| 国产精品久久久91| 国产精品日韩久久久久| 国产精品情侣自拍| 国产精品观看在线亚洲人成网| 国产精品久久久久久久久久久久午夜片 | 视频在线精品一区| 日韩影院一区| 日韩中文在线字幕| 日韩免费在线看| 欧美亚州在线观看| 麻豆精品视频| 国产精品一区而去| 成人免费视频97| 91九色综合久久| 国产成人亚洲综合| 日韩在线视频免费观看| 国产成人免费av电影| 国产精品极品尤物在线观看| 麻豆成人在线看| 又粗又黑又大的吊av| 亚洲www在线| 日本福利视频导航| 欧美日韩电影一区二区| 精品少妇在线视频| 国产精品亚洲自拍| 91精品国产网站| 日韩中文字幕精品视频| 国产精品无码电影在线观看| 久久亚洲综合国产精品99麻豆精品福利| 久久成人这里只有精品| 亚洲在线一区二区| 日本精品www| 国内一区二区三区在线视频| 国产精品自在线| 国产二级片在线观看| 久久久精品国产一区二区| 国产精品福利网站| 亚洲xxxx视频| 好吊色欧美一区二区三区四区| 国产免费黄色av| 久久精品国产理论片免费| 久久综合色影院| 亚洲欧美综合一区| 欧美亚洲另类久久综合| 白白操在线视频| 精品国产一区av| 亚洲最新免费视频| 欧美自拍大量在线观看| 成人免费在线小视频| 久久久久久久久综合| 欧美成人中文字幕在线| 日韩中文字幕在线不卡| 黄色www网站| 久久人人爽爽人人爽人人片av| 久久九九国产精品怡红院| 一区二区三区四区免费观看| 人偷久久久久久久偷女厕| 国产在线久久久| www.亚洲视频.com| 国产成人精品视频在线| 伊人久久大香线蕉av一区| 欧美亚洲国产精品| 91精品免费看| 久久亚洲影音av资源网| 人偷久久久久久久偷女厕| www.中文字幕在线| 国产精品激情av电影在线观看| 欧美一级片免费在线| 国产精品一区二区你懂得| 亚洲在线观看一区| 国产日韩欧美另类| 青草成人免费视频| 日韩在线www| 久久久久久欧美精品色一二三四| 久久综合久久88| 欧美中在线观看| 国产精品99久久久久久www | 色综合久久av| 国产精品一区在线播放|