Community Profile

photo

Mohamed Hakim


Last seen: 거의 3년 전 2021년부터 활동

Followers: 0   Following: 0

통계

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Solving a Nonlinear Equation using Newton-Raphson Method
function NewtonRaphsonMethod %Implmentaton of Newton-Raphson method to determine a solution. %to approximate solution to x = c...

거의 3년 전 | 2

답변 있음
Taylor Series of e^x
y= @(x) 2*x^2-5*x+3; x1=input("enterfirst number"); x2=input("enterfirst number"); if f(x1)*f(x2)==0 disp("no"); end

거의 3년 전 | 0

답변 있음
Taylor Series of e^x
function [ts]=newton(x,n) i=1; ts=1; while i<n || i==n ts=ts+(x.^i)/factorial(i); i=1+i; end end

거의 3년 전 | 0