卷积函数: numpy.convolve(a, v, mode='full') Parameters: a : (N,) array_like First one-dimensional input array. v : (M,) array_like Second one-dimensional input array. mode : {‘full’, ‘valid’, ‘same’}, optional ‘full’: By default, mode is ‘full’. This ret
矢量化指的是用数组表达式代替循环来操作数组里的每个元素. NumPy提供的通用函数(既ufunc函数)是一种对ndarray中的数据进行元素级别运算的函数. 例如,square函数计算各元素的平方,rint函数将各元素四舍五入: 还有一些函数接受2个参数,叫二元ufunc,比如add函数和maximum函数: numpy.where函数 numpy.where函数是三元表达式 x if condition else y 的矢量化版本,例如: np.where函数的第二个参数和第三个参数不是必要的
broadcasting Theano vs. Numpy broadcast mechanism allows a scalar may be added to a matrix, a vector to a matrix or a scalar to a vecotor. Examples T and F stands for True and False respectively, denoting which dimension can be broadcasted. Diference