快速了解 TensorFlow 基础 (四) 基础运算
标量的运算实数的四则运算加减乘除, 整除, 取余, 幂运算
TensorFlow 实现加减乘除: tf.math.add(a,b) $+$, tf.math.subtract(a,b) $-$, tf.math.multiply(a,b) $\times$, tf.math.divide(a,b)
...