Python - tensorflow.math.negative() Last Updated : 24 Feb, 2023 Comments Improve Suggest changes Like Article Like Report TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning neural networks. negative() is used to find element wise negative value of x. Syntax: tf.math.negative(x, name) Parameter: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float32, float64, int32, int64, complex64, complex128.name(optional): It defines the name for the operation. Returns: It returns a tensor of dtype as x. Example 1: Python3 # Importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([1, 2, -3, -4], dtype = tf.float64) # Printing the input tensor print('Input: ', a) # Calculating result res = tf.math.negative(x = a) # Printing the result print('Result: ', res) Output: Input: tf.Tensor([ 1. 2. -3. -4.], shape=(4, ), dtype=float64) Result: tf.Tensor([-1. -2. 3. 4.], shape=(4, ), dtype=float64) Example 2: This example uses complex tensor. Python3 # importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([1 + 3j, 2-5j, -3 + 7j, -4-8j], dtype = tf.complex128) # Printing the input tensor print('Input: ', a) # Calculating result res = tf.math.negative(x = a) # Printing the result print('Result: ', res) Output: Input: tf.Tensor([ 1.+3.j 2.-5.j -3.+7.j -4.-8.j], shape=(4, ), dtype=complex128) Result: tf.Tensor([-1.-3.j -2.+5.j 3.-7.j 4.+8.j], shape=(4, ), dtype=complex128) Comment More infoAdvertise with us Next Article Python - tensorflow.math.negative() A aman neekhara Follow Improve Article Tags : Machine Learning AI-ML-DS With Python Practice Tags : Machine Learning Similar Reads Python - tensorflow.math.ndtri() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. ndtri() is used to find quantile of Standard Normal. Syntax: tf.math.ndtri(x, name) Parameter: x: It's the input tensor. Allowed dtype for this tensor are float or doubl 1 min read Python - tensorflow.math.is_nan() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. is_nan() returns true if element is NaN otherwise it returns false. Syntax: tensorflow.math.is_NaN( x, name) Parameters: x: It is a tensor. Allowed dtypes are bfloat16, 2 min read Python - tensorflow.math.minimum() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. minimum() is used to find element wise maximum of x and y. Specifically, it returns x < y ? x : y. Syntax: tf.math.minimum(x, y, name) Parameter: x: It's the input te 2 min read Python - tensorflow.math.maximum() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. maximum() is used to find element wise maximum of x and y. Specifically, it returns x > y ? x : y. Syntax: tf.math.maximum(x, y, name) Parameter: x: It's the input te 2 min read Python - tensorflow.math.l2_normalize() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. l2_normalize() is used to normalize a tensor along axis using L2 norm. Syntax: tensorflow.math.l2_normalize( x, axis, epsilon, name) Parameters: x: It's the input tensor 2 min read Like