From ef36fbaebd256a9e8eda67b203e2ef93d2ea311f Mon Sep 17 00:00:00 2001
From: Matti Picus numpy.vectorizeMethods
>>> @np.vectorize
+... def identity(x):
+... return x
+...
+>>> identity([0, 1, 2])
+array([0, 1, 2])
+>>> @np.vectorize(otypes=[float])
+... def as_float(x):
+... return x
+...
+>>> as_float([0, 1, 2])
+array([0., 1., 2.])
+
Methods
|
@@ -803,4 +804,4 @@
|
@@ -859,4 +860,4 @@