how do i print only the last answer in a for loop
3 views (last 30 days)
Show older comments
function c = newton_interpolation(x,y)
[p,n]=size(x);
c = zeros(n, n);
c(:, 1)= y';
for j=2:n
for k=1:(n-j+1)
c(k,j) = (c(k+1, j-1) - c(k,j-1))/(x(k+j-1)-x(k))
end
end
when i print this i get every itteration of the answer but i only need the last
0 Comments
Answers (1)
madhan ravi
on 14 Nov 2020
c(k,j) = (c(k+1, j-1) - c(k,j-1))/(x(k+j-1)-x(k)); %<- semicolon
0 Comments
See Also
Categories
Find more on Interpolation 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!