Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Algorithms only
Search
Advanced Search
Forums
BYTES
Product Launch
Updates
Developer Toolkit
Today's Posts
Member List
Calendar
Home
Forum
Topic
Algorithms
numerical methods for engineer
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
rngz
New Member
Join Date:
Sep 2009
Posts:
1
#1
numerical methods for engineer
Sep 1 '09, 05:46 AM
how to make te pseudocode for the newton raphson's method in matlab program
JosAH
Recognized Expert
MVP
Join Date:
Mar 2007
Posts:
11453
#2
Sep 1 '09, 08:57 AM
Originally posted by
rngz
how to make te pseudocode for the newton raphson's method in matlab program
There is not much programming involved: for a function f(x) you need to know the first derivative w.r.t. x: f'(x) and all you do is iterate:
x(n)= x(n-1)-f(x(n-1))/f'(x(n-1)).
I don't know Matlab but it can't be too difficult to implement the above.
kind regards,
Jos
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment