Computes square of x element-wise.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.raw_ops.Square(
x, name=None
)
I.e., y=x∗x=x2.
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 .
|