G12ISC代做、代写Scientific Computation、代做Matlab编程、Matlab代写调试Matlab程序|代做SPSS

G12ISC Introduction to Scientific Computation— Coursework 2 (10%) —Submission deadline: 4pm, Wednesday, 12 Dec 2018This coursework contributes 10% towards the overall grade for the module.Note: This Coursework PDF document is complete. A total of 40 points can be obtainedin this coursework. The weighting is enclosed in brackets for each question, e.g. [4 / 40].See Moodle: Assessed Coursework 2 for all grading criteria per question.Rules: Each student is to submit their own coursework. You are allowed to work together and discuss in small groups (2 to 3 people), but you mustwrite your own coursework and program all code by yourself.Coursework Aim: In this coursework you will develop Matlab code related to algorithms thatsolve linear systems of equations.Getting Started: Download the contents of the “Coursework 2 Pack” folder from Moodle. Do the coursework by simply adding MATLAB code to the downloaded file cw2.m, and bycompleting the incomplete function m-files: backSub.m, forwElimPP.m, forwElimPPperm.m,genIter.m, genIterTol.m. Your responses to the numbered questions below should be written in cw2.m, except theresponses to questions 1, 4, 6, 8, 11 which involve the completion of the other m-files.Advice: Write your code as neatly and concisely as possible so that it is easy to follow. Add some comments to your scripts that indicate what a piece of code does. Remember to format output using for example disp, num2str or fprintf. Some marking criteria: Correctness of numerical output, clarity of code and comments, completenessof figures (title, axis labels, legend, etc) and tables, clear and concise answers toopen questions, . . .Submission Procedure: The coursework is to be submitted using the “Assessed Coursework2” assignment on Moodle. A complete submission consists of the following files: All m-files (including those that are already complete): cw2.m, forwElim.m, backSub.m,testMat.m, forwElimPP.m, forwElimPPperm.m, genIter.m, genIterTol.m 1 PDF file: cw2.pdf This PDF file is created using Matlab “Publish” on cw2.m (see for exampleSection 1.2.9 of the Matlab Guide (by Tom Wicks) for instructions on publishing scripts).I Gaussian elimination without pivotingTo solve a linear system of equations, consider the Gaussian elimination algorithmconsisting of forward elimination without row interchanges and backward substitution.The function m-file forwElim.m already contains a complete implementation ofSchool of Mathematical Sciences — Version: 8th December, 2018 — Lecturer: Dr Kris van der Zee Page 1 of 5the forward-elimination step (it will be helpful to familiarise yourself with its contents).This m-file essentially implements Algorithm 6.1, steps 1, 4, 5 & 6, as discussed inthe Lectures (see Lecture 4 and 5, slides & notes, available on Moodle).1 Modify the function m-file backSub.m. This function m-file should implement the [4 / 40]backward-substitution step (which is essentially steps 8 & 9 of Algorithm 6.1),and has the following prototype:function x = backSub ( A )where A is an n × (n+1) augmented matrix in echelon form, and the output x isthe corresponding solution vector (which is a column vector with n entries).2 By using the function m-file forwElim.m and your backSub.m, compute the ech- [2 / 40]elon form and the solution x in case the system of linear equations has an augmentedmatrix A1 given byA1 =1 1 2 1 81 1 1 0 22 2 3 3 201 1 4 3 4Make sure your cw2.m outputs the augmented matrix in echelon form and thesolution vector x, and that this is visible when “publishing” cw2.m as a PDF.Hint: You should verify that the solution is (column vector) x = [?7; 3; 2; 2].3 Consider the matrix A of size n × n and vector b of size n × 1 as provided by the [4 / 40]function [A, b] = testMat(n). Take a large range of values for n (for example,n = 50, 100, 150, 200, . . . , 950, 1000, . . . up to some large number that dependson how good your computer is, and how much patience you have), and useMatlab to compute the time it takes for forwElim.m to obtain the echelon formfor the augmented matrix [A, b], as well as the time it takes for your backSub.mto subsequently obtain the solution vector. Plot the computed time for forwElim.m versus n in a figure using loglog, andplot in the same figure the computed time for backSub.m.Hint: Use tic and toc to set Matlab’s stopwatch. Based on your plots, provide an explanation for the observed behaviour of thetimings.I Partial pivoting Now consider Gaussian elimination with forward elimination usingpartial pivoting.4 Complete the function m-file forwElimPP.m. The function has the following pro- [4 / 40]totype:function B = forwElimPP ( A )where A is an augmented matrix of size n × (n+1), and the output B is thecorresponding echelon form obtained by doing forward elimination and partialCoursework 2 Page 2 of 5pivoting (see Lecture 5).Hint: To find a maximum in some vector, you could use a for loop and booleancomparisons, or you can use the Matlab function max (see help max for moreinfo).5 Repeat Question 2, but now using your forwElimPP.m and in case of the aug- [2 / 40]mented matrix A2 given byA2 =0 1 2 1 11 1 1 0 82 2 3 3 201 1 4 3 4(Note: The solution is the same as before.)6 Complete the function forwElimPPperm.m, which has the following prototype: [3 / 40]function [B , P ] = forwElimPPperm ( A )This function implements the same algorithm as forwElimPP.m, but additionally,it outputs P, which is the n × n permutation matrix corresponding to the pivotingprocess. In other words, P isG12ISC作业代做、代写Scientific Computation作业、代做Matlab编程作业、Matlab作业代 a rearrangement of the n × n identity matrix, sothat PA is the row-rearrangement of A. Note that the forward elimination withoutpivoting of PA gives exactly the same echelon form as forward elimination withpivoting of A.7 Apply your forwElimPPperm.m to A3, which is given in Matlab notation by [2 / 40]A3 = [...26 -34 31 -48 25 -18 13 -32 -28 13 290 0 25 42 -27 31 -14 23 -13 -48 6724 39 -38 15 -44 29 0 -13 -41 41 -152-39 2 3 43 27 0 -28 34 14 0 36218 20 -17 -34 17 1 15 23 -32 25 292-4 -35 5 42 22 14 10 7 -45 31 2810 45 -10 29 14 45 -11 -32 22 -12 421-40 4 -8 8 -8 -6 -36 46 -15 12 -6532 18 -32 -6 -11 -44 0 0 0 0 -337-32 -46 -24 -24 32 37 -8 42 0 3 124];(You should be able to select the above matrix and copy–paste it into Matlab.)(Alternatively, find an m-file with this matrix on the discussion forum on Moodle.) Output the permutation matrix P. Apply forwElim.m to A = PA3, and output the resulting echelon form.I Jacobi method and Gauss–Seidel methodTo solve a linear system of equations, consider iterative methods that can be writtenCoursework 2 Page 3 of 5as the following general iteration method:x(k) = Tx(k1) + c for k = 1, 2, . . . , Nmax.8 Complete the function m-file genIter.m, which has the following prototype: [4 / 40]function x_mat = genIter (T ,c , x0 , Nmax )where the input consists of an (n × n) iteration matrix T, an (n × 1) vector c,the (n × 1) vector x0 (a given initial approximation), and Nmax, which is thetotal number of iterations to be peformed by the method. The output x mat isa matrix of size n × (Nmax+1) that stores all approximation vectors xk for k =0, 1, . . . , Nmax, that are generated by the iteration method.9 Consider the linear system Ax = b, where [3 / 40]A =4 1 01 8 10 1 4 and b =481224 .By using your genIter.m, obtain the approximations as provided by the Jacobimethod and by the Gauss–Seidel method, taking in both methods x0 = [1; 1; 1]and Nmax = 12. (The output can be suppressed.)Hint: You can simply pre-compute the T and c as used in these methods (seeLecture 7, slides & notes, available on Moodle).Create (and output) for each method a table with a column for k (ranging from0 to Nmax), and three columns for the corresponding approximations x(k)1, x(k)2,and x(k)3. (Hence, two tables with four columns each are requested.)10 The exact solution is x = [13; 4; 7]. [4 / 40] Create (and output) a semilogy figure with a plot of the l2 norm of the error,kx x(k)k2, versus k for each method. Also do this for the l∞ norm of the error,kx x(k)k∞, for each method. (Hence, two figures with two plots (one for Jacobiand one for Gauss–Seidel) are requested.)Hint: Type “help norm” in Matlab to see how Matlab can compute the l2norm k · k2 and the l∞ norm k · k∞ of a vector. From your semilogy plots, what is (approximately) the observed slope of theresults? (Four values are requested, one for each plot.)Following questions available since 4 Dec 2018. . . (= last set of questions)I Jacobi method and Gauss–Seidel method with stopping criterion11 To improve on genIter.m, complete the function m-file genIterTol.m, which [2 / 40]has the following prototype:function [ x_mat , Niter , resNorm_vec ] = genIterTol (T ,c , x0 , Nmax ,tol ,A , b )Coursework 2 Page 4 of 5where the input consists additionally of a (positive) real number tol, the n × nmatrix A and n × 1 vector b. This m-file implements the general iteration methodwith a stopping criterion based on the l2 norm of the residual vector, that is, theiterations are stopped ifb Ax(k)2of Niter, which is the total number of iterations required to reach the stoppingcriterion (or to reach Nmax, whichever comes first), and resNorm vec which is avector of size Niter and stores all values ofb Ax(k)2, k = 1, 2, . . . , Niter.Note that the output x mat is now of size n × (Niter+1).Hint: Use the command “break” to prematurely exit “for” or “while” loops.12 Consider again the linear system defined in Question 9. By using [2 / 40]your genIterTol.m, obtain the approximations as provided by the Jacobimethod and by the Gauss–Seidel method, taking in both methods x0 = [1; 1; 1]and tol = 1e?10. Choose Nmax sufficiently large, so that Niter is determinedby the stopping criterion. (The output can be suppressed.) Create (and output) for each method a table with a column for k (ranging from 1to Niter) and a column for resNorm vec. (Hence, two tables with two columnseach are requested.)13 Consider the Jacobi method for the linear system Ax = b, where A and b are [4 / 40]the n × n matrix and n × 1 vector defined by:A =2+δ 1 0 · · · 01 2+δ 10 · · · 0 1 2+δand b =, respectively.where δ ≥ 0. (Matrix A appears in the numerical solution of certain differentialequations.) Use Matlab to output the matrix T and vector c for the Jacobi method whenδ = 0.5 and n = 7. Assuming δ = 0, use your genIterTol.m to study how the total number of iterationsNiter for the Jacobi method depends on n as n → ∞. Take tol = 1e3and x0 = [0 ; . . . ; 0] (and Nmax sufficiently large). Finally, study how Niter depends on δ, for fixed large values of n (e.g.,n = 50). What happens as n → ∞ Take tol and x0 as before. It is suffi-cient to consider values of δ that are ≥ 0.Hint: Provide sufficient evidence (for example output and/or figures) to supportyour answers. You are allowed to create additional function m-files.转自:http://ass.3daixie.com/2018121327928202.html

你可能感兴趣的:(G12ISC代做、代写Scientific Computation、代做Matlab编程、Matlab代写调试Matlab程序|代做SPSS)