Returns x / y element-wise for real types.
tf.realdiv(
x: Annotated[Any, tf.raw_ops.Any
],
y: Annotated[Any, tf.raw_ops.Any
],
name=None
) -> Annotated[Any, tf.raw_ops.Any
]
If x
and y
are reals, this will return the floating-point division.
Returns | |
---|---|
A Tensor . Has the same type as x .
|