A collection of sloppy snippets for scientific computing and data visualization in Python.
Showing posts with label
approximation
.
Show all posts
Showing posts with label
approximation
.
Show all posts
Friday, June 28, 2013
Shape Matching Experiments
›
Often, in Computer Vision tasks we have a model of an interesting shape and we want to know if this model matches with a target shape found ...
3 comments:
Saturday, January 21, 2012
Monte Carlo estimate for pi with numpy
›
In this post we will use a Monte Carlo method to approximate pi. The idea behind the method that we are going to see is the following: Draw...
6 comments:
Tuesday, January 3, 2012
Fixed point iteration
›
A fixed point for a function is a point at which the value of the function does not change when the function is applied. More formally, x i...
5 comments:
Friday, July 1, 2011
Approximating pi
›
This script uses the following formula to approximate the value of pi with a fixed number of correct digits. import math def pi(digits): k...
›
Home
View web version