Thursday, September 18, 2025
HomeLanguagesPython – tensorflow.math.imag()

Python – tensorflow.math.imag()

TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. 

imag() is used to find the imaginary part of a tensor.

Syntax: tensorflow.math.imag( input, name)

Parameters:

  • input: It is a tensor. Allowed dtypes are float, double, complex64, complex128.
  • name(optional): It defines the name of 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([7, 8, 13, 11], dtype = tf.float64)
 
# Printing the input tensor
print('a: ', a)
 
# Calculating the result
res = tf.math.imag(a)
 
# Printing the result
print('Result: ', res)


Output:

a:  tf.Tensor([ 7.  8. 13. 11.], shape=(4, ), dtype=float64)
Result:  tf.Tensor([0. 0. 0. 0.], shape=(4, ), dtype=float64)

Example 2:

Python3




# Importing the library
import tensorflow as tf
 
# Initializing the input tensor
a = tf.constant([2 + 4j, 8 + 7j, 14 + 5j], dtype = tf.complex128)
 
# Printing the input tensor
print('a: ', a)
 
# Calculating the result
res = tf.math.imag(a)
 
# Printing the result
print('Result: ', res)


Output:

a:  tf.Tensor([ 2.+4.j  8.+7.j 14.+5.j], shape=(3, ), dtype=complex128)
Result:  tf.Tensor([4. 7. 5.], shape=(3, ), dtype=float64)
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6664 POSTS0 COMMENTS
Nicole Veronica
11837 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7054 POSTS0 COMMENTS
Thapelo Manthata
6738 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS