Getting StartedΒΆ

PyIMSL functions conform to established conventions in programming and documentation. We give first priority in development to efficient algorithms, clear documentation, and accurate results. The uniform design of the functions makes it easy to use more than one function in a given application. Also, you will find that the design consistency enables you to apply your experience with one PyIMSL Stat Library function to all other IMSL functions that you use.

PyIMSL is developed as a set of wrappers to the IMSL C Numerical Library. The IMSL C Numerical Library must be installed in order to use the Python interface. PyIMSL follows Python style programming practices but also closely follows the programming interface of the underlying IMSL C Numerical Library, allowing code developed in Python to be more easily ported to native C code if desired.

The PyIMSL Stat Library uses the NumPy extensions for arrays, particularly the ndarray type. The NumPy package must be installed in order to use the PyIMSL Stat Library.

Below are some useful links for Python and NumPy: