Python 用热情

Python 用热情,python,scipy,Python,Scipy,我需要计算一个问题的互补误差函数(erfc^(1))的逆 我正在为它研究Python工具,许多线程都说Enthough拥有大部分功能 数学工具需要,所以我下载并安装在我的本地用户帐户。但我不是 非常确定如何使用它 有什么想法吗?包含在Python发行版中 ,它包含在Python发行版中 下面是Enthound Python发行版(EPD)中计算的一个快速示例,该发行版使用互补错误函数(erfcinv)的逆函数,包含在EPD随附的软件包中: C:\>c:\Python25\python EP

我需要计算一个问题的互补误差函数(erfc^(1))的逆

我正在为它研究Python工具,许多线程都说Enthough拥有大部分功能 数学工具需要,所以我下载并安装在我的本地用户帐户。但我不是 非常确定如何使用它

有什么想法吗?

包含在Python发行版中

,它包含在Python发行版中


下面是Enthound Python发行版(EPD)中计算的一个快速示例,该发行版使用互补错误函数(
erfcinv
)的逆函数,包含在EPD随附的软件包中:

C:\>c:\Python25\python
EPD Py25 (4.1.30101) -- http://www.enthought.com/epd

Python 2.5.2 |EPD Py25 4.1.30101| (r252:60911, Dec 19 2008, 13:49:12) [MSC v.131
0 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from scipy.special import erfcinv
>>> erfcinv(0.)
1.271161006153646e+308
>>> erfcinv(1.)
0.0
>>> erfcinv(2.)
-1.271161006153646e+308
>>> exit()

C:\>

下面是Enthound Python发行版(EPD)中计算的一个快速示例,该发行版使用互补错误函数(
erfcinv
)的逆函数,包含在EPD随附的软件包中:

C:\>c:\Python25\python
EPD Py25 (4.1.30101) -- http://www.enthought.com/epd

Python 2.5.2 |EPD Py25 4.1.30101| (r252:60911, Dec 19 2008, 13:49:12) [MSC v.131
0 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from scipy.special import erfcinv
>>> erfcinv(0.)
1.271161006153646e+308
>>> erfcinv(1.)
0.0
>>> erfcinv(2.)
-1.271161006153646e+308
>>> exit()

C:\>