Feeds
질문
Lagrange Interpolation related problem (plotting a graph)
x = input('Enter values of x: '); y = input('Enter values of y: '); n = length(x); L = zeros(n,n); for i = 1:n V= 1; ...
대략 5년 전 | 답변 수: 1 | 0
1
답변질문
Solving non- linear equations using newton Rapshson
function [k,p0,inc,error,y] = newton(f,dfv,p0,delta,max1) error = 10^-5 ; fprintf('k\t\t Seq Of P0\t\t Increment\t\t Value...
대략 5년 전 | 답변 수: 1 | 0