Skip to content

Commit f70fb00

Browse files
committed
✏️ Fix ufunc exp
1 parent 5d894a8 commit f70fb00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/workspace/numpy/ufunc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@
382382
"`abs`, `fabs` | calculates the absolute value element by element for integer, floating point or complex values\n",
383383
"`sqrt` | calculates the square root of each element (corresponds to `data ** 0,5`)\n",
384384
"`square` | calculates the square of each element (corresponds to `data ** 2`)\n",
385-
"`exp` | calculates the exponent e<sup>x</sup> of each element\n",
385+
"`exp` | calculates the exponential of all elements in the input array\n",
386386
"`log`, `log10`, `log2`, `log1p` | Natural logarithm (base e), log base 10, log base 2 and log(1 + x) respectively\n",
387387
"`sign` | calculates the sign of each element: `1` (positive), `0` (zero), or `-1` (negative)\n",
388388
"`ceil` | calculates the upper limit of each element (i.e. the smallest integer greater than or equal to this number)\n",

0 commit comments

Comments
 (0)