Community Profile

photo

Mohamed Hakim


Last seen: presque 3 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
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...

presque 3 ans il y a | 2

A répondu
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

presque 3 ans il y a | 0

A répondu
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

presque 3 ans il y a | 0