Changes between Version 4 and Version 5 of TransitionStories

Show
Ignore:
Timestamp:
01/28/06 14:53:23 (7 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TransitionStories

    v4 v5  
    1111 
    1212= SciPy = 
    13 [http://www.scipy.org/ SciPy] is a '''large''' collection of toolboxes to give more number-crunching capability to Python with !NumPy.  Converting it to use NumPy intead of Numeric was accomplished in a relatively short time.   Part of this was due to the fact that SciPy relies heavily on f2py and so once f2py was working for NumPy, then SciPy could work.  But, this was not the whole story.  There are still many hand-written C-modules and a large number of Python modules that were using Numeric-specific ideas that had to be converted.    
     13[http://www.scipy.org/ SciPy] is a '''large''' collection of toolboxes to give more number-crunching capability to Python with !NumPy.  Converting it to use !NumPy intead of Numeric was accomplished in a relatively short time.   Part of this was due to the fact that !SciPy relies heavily on f2py and so once f2py was working for !NumPy, then !SciPy could work.  But, this was not the whole story.  There are still many hand-written C-modules and a large number of Python modules that were using Numeric-specific ideas that had to be converted.    
    1414 
    1515The convertcode script was used for all of the Python modules and that proved its worth.  There was some hand-editing that still had to be done because the typecode-character conversions also tried to convert legitimate uses of the 'c' string (used in determining which Fortran data-type to select) to 'S1'.  This experience led to disabling of that conversion in convert code.