tf.math.pow
    
    
      
    
    
      
      Stay organized with collections
    
    
      
      Save and categorize content based on your preferences.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
Computes the power of one value to another.
tf.math.pow(
    x, y, name=None
)
Given a tensor x and a tensor y, this operation computes \(x^y\) for
corresponding elements in x and y. For example:
x = tf.constant([[2, 2], [3, 3]])
y = tf.constant([[8, 16], [2, 3]])
tf.pow(x, y)  # [[256, 65536], [9, 27]]
| Args | 
|---|
| x | A Tensorof typefloat16,float32,float64,int32,int64,complex64, orcomplex128. | 
| y | A Tensorof typefloat16,float32,float64,int32,int64,complex64, orcomplex128. | 
| name | A name for the operation (optional). | 
  
  
 
  
    
    
      
       
    
    
  
  
  Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
  Last updated 2020-10-01 UTC.
  
  
  
    
      [null,null,["Last updated 2020-10-01 UTC."],[],[]]