Lagrange Interpolation Question!

3 views (last 30 days)
Reid Mcleod
Reid Mcleod on 7 Oct 2021
Below is a homework question for my Numerical Analysis course! I am not asking for someone to solve/write it! I wrote my own code based off what we learned in class, and it continued to not work. The code seen below is the teachers code from office hours but he didn't have time to explain it and I was hoping someone here may help!
My code was practically the same but I was using L = ones(length(x),N) and I did not have the L(:,1) = ones(1,length(x)); and I am confused what difference that made?
Any explanation helps! They kind of threw us into Matlab full speed and I am trying to catch up!

Answers (1)

Shravan Kumar Vankaramoni
Shravan Kumar Vankaramoni on 11 Oct 2021
Hi,
"ones(a,b)" returns a-by-b array of ones.
L = ones(length(x),N); %length(x)-by-N array
L(:,1) = ones(1,length(x)); %length(x)-by-1
In the above cases, size of the array returned is different. So, you are replacing with an array of different size that might have changed your result. For more information refer the below doc:

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!