log¶
- paddle. log ( x, name=None ) [source]
-
Calculates the natural log of the given input tensor, element-wise.
\[\begin{split}Out = \\ln(x)\end{split}\]- Parameters
-
x (Tensor) – Input Tensor. Must be one of the following types: float32, float64.
name (str|None) – The default value is None. Normally there is no need for user to set this property. For more information, please refer to Name
- Returns
-
The natural log of the input Tensor computed element-wise.
- Return type
-
Tensor
Examples
import paddle x = [[2,3,4], [7,8,9]] x = paddle.to_tensor(x, dtype='float32') res = paddle.log(x) # [[0.693147, 1.09861, 1.38629], [1.94591, 2.07944, 2.19722]]