Computes square of x element-wise.
tf.math.square(
x: _atypes.TensorFuzzingAnnotation[TV_Square_T], name=None
) -> _atypes.TensorFuzzingAnnotation[TV_Square_T]
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 |