Matlab question
Show older comments
Hey guys so this is the question. I just need the matlab code for neville's method and newton's divided differences method because i always get errors on matlab.
For general cases, IL can be calculated by
IL = integration from λ min to λ max of F (λ)dλ.
For example, Table is the set of data: F (λ) vs. λ.
values of λ (×10^−7) = 4.5 4.6 4.7 4.8 4.9 5.0 5.1 5.2 5.3
values of F (λ) (×10^3) = 2.6 2.3 1.8 1.5 0.9 0.2 −0.7 −1.4 −2.
Calculate P8(λ) at λ = 4.55, 4.65, 4.75, 4.85, 4.95, 5.05, 5.15, 5.25 (×10^−7)
by Neville’s algorithm and Newton’s divided differences with the data
given in the Table, where P8(λ) is the Lagrange interpolating polynomial of degree ≤ 8. Which one is faster?
Hint: Commands tic and toc can be used to record the CPU time in
Matlab.
Please I need help as I didn't use matlab before. I just need the matlab codes for these. Thanks
6 Comments
Walter Roberson
on 23 Nov 2011
Writing the code for Neville's algorithm and Newton's divided differences method, would appear to be almost the entire assignment, with the rest of it just being specific test data to use.
Your posting would tend to give people the impression that you have asked other people to do nearly all of your homework assignment.
http://www.mathworks.com/matlabcentral/answers/8026-best-way-s-to-master-matlab
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Andrew Rizk
on 23 Nov 2011
Wayne King
on 23 Nov 2011
You should post the relevant portions of your MATLAB code and the errors you are getting.
Walter Roberson
on 23 Nov 2011
Quite a lot of programming involves implementing known algorithms, and a lot of the rest of programming involves first inventing new algorithms and then implementing them.
If your version of the code is giving problems, then it is time to start to learn how to understand error messages and to read reference material, and to learn how to debug problems.
Start with the first error message that you are having difficulty understanding. Have you search mathworks.com for more information about what that particular error message means?
Andrew Rizk
on 25 Nov 2011
Daniel Shub
on 26 Nov 2011
You might have better luck asking in a FreeMat forum, because that syntax doesn't look anything like MATLAB syntax.
Answers (0)
This question is closed.
Categories
Find more on Performance and Memory in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!