InterviewSolution
| 1. |
What Is Scipy? |
|
Answer» SciPy is a set of open source (BSD licensed) scientific and numerical tools for Python. It CURRENTLY supports special functions, integration, ORDINARY differential equation (ODE) solvers, gradient optimization, parallel programming tools, an expression-to-C++ compiler for fast execution, and others. A good rule of thumb is that if it’s covered in a GENERAL textbook on numerical computing (for example, the well-known Numerical Recipes series), it’s PROBABLY IMPLEMENTED in scipy. SciPy is a set of open source (BSD licensed) scientific and numerical tools for Python. It currently supports special functions, integration, ordinary differential equation (ODE) solvers, gradient optimization, parallel programming tools, an expression-to-C++ compiler for fast execution, and others. A good rule of thumb is that if it’s covered in a general textbook on numerical computing (for example, the well-known Numerical Recipes series), it’s probably implemented in scipy. |
|