Python numpy.frompyfunc()

Python numpy.frompyfunc()

numpy.frompyfunc(func, nin, nout)函数允许创建一个任意的Python函数作为Numpy ufunc(通用函数)。

参数:
func: [一个python函数对象] 一个任意的python函数
nin: [int] 该函数的输入参数的数量。
nout: [int] 由该函数返回的对象的数量。
返回:一个Numpy通用函数对象。

例如,abs_value = numpy.frompyfunc(abs, 1, 1) 将创建一个ufunc,返回数组元素的绝对值。

代码 #1:

# Python code to demonstrate the
# use of numpy.frompyfunc
import numpy as np
 
# create an array of numbers
a = np.array([34, 67, 89, 15, 33, 27])
 
# python str function as ufunc
string_generator = np.frompyfunc(str, 1, 1)
 
print("Original array-", a)
print("After conversion to string-", string_generator(a))

输出:

Original array- [34 67 89 15 33 27]
After conversion to string- ['34' '67' '89' '15' '33' '27']

代码 #2:

# Python code to demonstrate
# user-defined function as ufunc
import numpy as np
 
# create an array of numbers
a = np.array([345, 122, 454, 232, 334, 56, 66])
 
# user-defined function to check
# whether a no. is palindrome or not
def fun(x):
    s = str(x)
    return s[::-1]== s
     
# 'check_palindrome' as universal function
check_palindrome = np.frompyfunc(fun, 1, 1)
print("Original array-", a)
print("Checking of number as palindrome-",
                      check_palindrome(a))

输出:

Original array- [345 122 454 232 334  56  66]
Checking of number as palindrome- [False False True True False False True]

注意:这个使用frompyfunc创建的自定义ufunc总是接受一个ndarray作为输入参数,同时也返回一个ndarray对象作为输出。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程