📜  Golang 中的 complx.Exp()函数示例

📅  最后修改于: 2021-10-24 14:18:37             🧑  作者: Mango

complx.Exp() Golang 中的函数用于返回 e**x,即 x 的以 e 为底的指数。

句法:

func Exp(x complex128) complex128

这里,x 是所有复数实部和虚部的集合。

返回类型:该函数的返回类型是复数。

示例 1:

// Golang program to illustrate
// the complx.Exp() Function
  
package main
  
// importing fmt and math/cmplx
import (
"fmt"
"math/cmplx"
)
  
// Calling main method
func main() {
      
    // using the function
    fmt.Printf("%.2f", cmplx.Exp(5 + 6i))
}

输出:

(142.50-41.47i)

示例 2:

// Golang program to illustrate
// the complx.Exp() Function
  
package main
  
// importing fmt and math/cmplx
import (
"fmt"
"math/cmplx"
)
  
// Calling main method
func main() {
      
    n := complex(7, 8)
      
    // using the function
    fmt.Printf("%.2f", cmplx.Exp(n))
}

输出:

(-159.56+1084.96i)