Computes square of x element-wise.
tf.raw_ops.Square(
x, name=None
)
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 .
|