返回介绍

01. Python 工具

02. Python 基础

03. Numpy

04. Scipy

05. Python 进阶

06. Matplotlib

07. 使用其他语言进行扩展

08. 面向对象编程

09. Theano 基础

10. 有趣的第三方模块

11. 有用的工具

12. Pandas

向量化函数

发布于 2022-09-03 20:46:13 字数 2581 浏览 0 评论 0 收藏 0

自定义的 sinc 函数:

In [1]:

import numpy as np

def sinc(x):
    if x == 0.0:
        return 1.0
    else:
        w = np.pi * x
        return np.sin(w) / w

作用于单个数值:

In [2]:

sinc(0.0)

Out[2]:

1.0

In [3]:

sinc(3.0)

Out[3]:

3.8981718325193755e-17

但这个函数不能作用于数组:

In [4]:

x = np.array([1,2,3])
sinc(x)
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-4-9d4f36f2aa7a> in <module>()
 1 x = np.array([1,2,3])
----> 2  sinc(x)

<ipython-input-1-dffe464e3332> in sinc(x)
 2 
 3 def sinc(x):
----> 4  if x == 0.0:
 5         return 1.0
 6     else:

ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

可以使用 numpyvectorize 将函数 sinc 向量化,产生一个新的函数:

In [5]:

vsinc = np.vectorize(sinc)
vsinc(x)

Out[5]:

array([  3.89817183e-17,  -3.89817183e-17,   3.89817183e-17])

其作用是为 x 中的每一个值调用 sinc 函数:

In [6]:

import matplotlib.pyplot as plt
%matplotlib inline

x = np.linspace(-5,5,101)
plt.plot(x, vsinc(x))

Out[6]:

[<matplotlib.lines.Line2D at 0xa24e4e0>]

因为这样的用法涉及大量的函数调用,因此,向量化函数的效率并不高。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文