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
H:\Python\numpy-1.7.0\numpy-1.7.0>python setup.py | |
Running from numpy source directory. | |
======================================================================== | |
Starting interactive session | |
------------------------------------------------------------------------ | |
Tasks: | |
i - Show python/platform/machine information | |
ie - Show environment information | |
c - Show C compilers information |
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
#------------------------------------------------------------------------------- | |
# Name: Nelder-Mead | |
# Purpose: | |
# | |
# Author: Harshad | |
# | |
# Created: 25-10-2012 | |
# Copyright: (c) Harshad 2012 | |
# Licence: <your licence> | |
#------------------------------------------------------------------------------- |
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
from pylab import * | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.mplot3d import Axes3D | |
import math | |
from scipy.optimize import * | |
import cmath as cm | |
import powell | |
from powell import * | |
from decimal import * |
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
##==============================================================================## | |
##-----------ALL IMPORTS-----------## | |
from pylab import * | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.mplot3d import Axes3D | |
import math | |
from scipy.optimize import * |