Golang 找到复数的余弦函数

Golang 找到复数的余弦函数

Go语言通过cmplx包提供了对基本常量和复数的数学函数的内置支持。你可以使用math/cmplx包提供的Cos()函数找到指定复数的余弦值。因此,你需要使用import关键字在程序中添加一个math/cmplx包,以访问Cos()函数。

语法:

func Cos(y complex128) complex128

现在我们通过以下示例来讨论此概念:

示例1:

// Golang程序,用于说明如何找到给定复数的余弦值
  
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// 主函数
func main() {
  
    // Finding Cosine of the 
    // specified complex number
    // Using Cos() function
    res_1 := cmplx.Cos(2 + 5i)
    res_2 := cmplx.Cos(-1 + 8i)
    res_3 := cmplx.Cos(-1 - 7i)
  
    // Displaying the result
    fmt.Println("Result 1:", res_1)
    fmt.Println("Result 2:", res_2)
    fmt.Println("Result 3:", res_3)
} 

输出:

Result 1: (-30.88223531891674-67.47278844058751i)
Result 2: (805.3093276729627+1254.19468537245i)
Result 3: (296.2569584411429-461.3921082367867i)

示例2:

// Golang程序,用于说明如何找到给定复数的余弦值
  
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// 主函数
func main() {
  
    cnumber_1 := complex(1, 2)
    cnumber_2 := complex(3, 6)
  
    // Finding cosine
    cvalue_1 := cmplx.Cos(cnumber_1)
    cvalue_2 := cmplx.Cos(cnumber_2)
  
    // Sum of two cosine values
    res := cvalue_1 + cvalue_2
  
    // Displaying results
    fmt.Println("Complex Number 1: ", cnumber_1)
    fmt.Println("Cosine 1: ", cvalue_1)
  
    fmt.Println("Complex Number 2: ", cnumber_2)
    fmt.Println("Cosine 2: ", cvalue_2)
    fmt.Println("Sum : ", res)
  
} 

输出:

Complex Number 1:  (1+2i)
Cosine 1:  (2.0327230070196656-3.0518977991518i)
Complex Number 2:  (3+6i)
Cosine 2:  (-199.6969662082171-28.465762393875067i)
Sum :  (-197.66424320119745-31.517660193026867i)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程