This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* @param x the array of abscissae | |
* @param y the array of ordinates | |
* @return the top elements of the Divided Difference Table used when | |
* calculating Newton's Devided Differences | |
*/ | |
public static double[] aitken(double[] x, double[] y) { | |
int n = x.length; | |
double[] dividedDifferences = y.clone(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
THESE INSTRUCTIONS ARE FOR OLD VERSIONS OF DJANGO/CELERY/PYTHON! | |
1. Download the latest version of django-celery from here: | |
https://github.com/ask/django-celery/archives/master | |
2. Unzip, go to folder | |
3. python setupy.py build | |
4. python setup.py install |
NewerOlder