John
Followers: 0 Following: 0
Statistics
0 Questions
6 Answers
RANK
227,553
of 295,638
REPUTATION
0
CONTRIBUTIONS
0 Questions
6 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,255
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,207
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Euler Method IVP Coding Help
w0=0.5; a=0; b=2; hh=[0.5 0.2 0.1 0.05 0.01 0.005 0.001]; f=@(t,y) y-t^2+1; for j=1:7 we(1,j)=w0; wm(1,j)=w0; wr(1,j)=w0...
1 year ago | 0
Derivative
clc; syms x f = @(x) sin(x); x = pi/2; h = 0.0001; d = (f(x+h)-f(x-h)/2*h)
1 year ago | 0
Sum of Least Squares
xi = [1491214 17]; yi = [-3.97, 5.18, 20.43, 29.58, 35.68, 44.83]; n = length(xi); A = [n sum(xi); sum(xi) sum(xi.^2)]; C = ...
1 year ago | 0
lagrange interpolation, .m
function Y = Lagrange_371(x,y,X) n = length(x) - 1; Y = 0; for i = 0:n prod = 1; for j = 0:n if i ~= j ...
1 year ago | 0
Help with newton-raphson
function [p, PN] = Newton_371(p0,N,tol,f,fp) p=p0; PN(1)=p0; for n= 1:N p=p-f(p)/fp(p); PN(n+1) =p; if abs(p-P...
1 year ago | 0
Bisection method relative error
function [p, pN] = Bisection_371(a,b,N, tol) if f(a)*f(b) > 0 disp("IVT does not guarantee a root in [a,b]") elseif f(a)*f...
1 year ago | 0