Mohamed Hakim
Followers: 0 Following: 0
Statistics
0 Questions
3 Answers
RANK
12 837
of 295 467
REPUTATION
4
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
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
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...
mer än 3 år ago | 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
mer än 3 år ago | 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
mer än 3 år ago | 0