Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
1
Star
3
Fork
2
apauley
/
numerical-analysis
Code
Issues
0
Pull requests
0
Projects
0
Insights
Permalink
Browse files
README
Loading branch information
...
Andreas Pauley
committed
Sep 2, 2010
1 parent
ae6c47e
commit
e9d6e29a4be85e59db094f44983850f29e75391c
Unified
Split
Showing
3 changed files
with
2 additions
and
6 deletions
.
+2
−0
Chapter1/Python/README.txt
+0
−3
Chapter1/Python/numerical-methods.py
+0
−3
Chapter1/Python/secant.py
Show comments
View
2
Chapter1/Python/README.txt
@@ -0,0 +1,2 @@
+This code was originally written by Zahir Jacobs:
+http://zahirj.wordpress.com/2009/04/04/complete-listing-of-python-code-for-selected-root-finding-methods/
Show comments
View
3
Chapter1/Python/numerical-methods.py
@@ -1,8 +1,5 @@
#
!/usr/bin/env python
-
#
This code was originally written by Zahir Jacobs:
-
#
http://zahirj.wordpress.com/2009/04/04/complete-listing-of-python-code-for-selected-root-finding-methods/
-
import
math
from
helpers
import
*
Show comments
View
3
Chapter1/Python/secant.py
@@ -1,8 +1,5 @@
#
!/usr/bin/env python
-
#
This code was originally written by Zahir Jacobs:
-
#
http://zahirj.wordpress.com/2009/04/04/complete-listing-of-python-code-for-selected-root-finding-methods/
-
from
helpers
import
*
def
secant
(
func
,
a
,
b
,
max_steps
=
MaxSteps,
tolerance
=
Tolerance):
Toggle all file notes
0 comments on commit
e9d6e29
Please
sign in
to comment.
You can’t perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
Press h to open a hovercard with more details.
0 comments on commit
e9d6e29