Type linear_operator_algebra
Namespace tensorflow.python.ops.linalg.linear_operator_algebra
Methods
Properties
Public static methods
object adjoint(LinearOperator lin_op_a, string name)
object adjoint(object lin_op_a, string name)
object adjoint_dyn(object lin_op_a, object name)
Transposes the last two dimensions of and conjugates tensor `matrix`. 
			
				
			
				
	Parameters
- 
							
objectlin_op_a - 
							
objectname - A name to give this `Op` (optional).
 
Returns
- 
						
object - The adjoint (a.k.a. Hermitian transpose a.k.a. conjugate transpose) of matrix.
 
  Show Example
  
		x = tf.constant([[1 + 1j, 2 + 2j, 3 + 3j],
                             [4 + 4j, 5 + 5j, 6 + 6j]])
            tf.linalg.adjoint(x)  # [[1 - 1j, 4 - 4j],
                                  #  [2 - 2j, 5 - 5j],
                                  #  [3 - 3j, 6 - 6j]]