Computes square of x element-wise.
tf.math.square(
x: Annotated[Any, tf.raw_ops.Any
],
name=None
) -> Annotated[Any, tf.raw_ops.Any
]
Used in the notebooks
Used in the guide | Used in the tutorials |
---|---|
I.e., \(y = x * x = x^2\).
tf.math.square([-2., 0., 3.])
<tf.Tensor: shape=(3,), dtype=float32, numpy=array([4., 0., 9.], dtype=float32)>
Returns | |
---|---|
A Tensor . Has the same type as x .
If |