Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for E$1 (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      For complex numbers, the exponential value is calculated as follows:
    
      ```
      e^(x+iy) = e^x * e^iy = e^x * (cos y + i sin y)
      ```
    
      Let's consider complex number 1+1j as an example.
      e^1 * (cos 1 + i sin 1) = 2.7182818284590 * (0.54030230586+0.8414709848j)
    
      ```python
      x = tf.constant(1 + 1j)
      tf.math.exp(x) ==> 1.4686939399158851+2.2873552871788423j
      ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top