Lagrange Interpolation Question!

3 ビュー (過去 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 Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by