Lagrange Interpolation Question!

조회 수: 4 (최근 30일)
Reid Mcleod
Reid Mcleod 2021년 10월 7일
답변: Shravan Kumar Vankaramoni 2021년 10월 11일
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!

답변 (1개)

Shravan Kumar Vankaramoni
Shravan Kumar Vankaramoni 2021년 10월 11일
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:

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by