Encontrar el seno inverso de un número complejo en Golang

El lenguaje Go brinda soporte incorporado para constantes básicas y funciones matemáticas para números complejos con la ayuda del paquete cmplx. Puede encontrar el seno inverso del número complejo especificado con la ayuda de la función Asin() proporcionada por el paquete math/cmplx. Por lo tanto, debe agregar un paquete matemático/cmplx en su programa con la ayuda de la palabra clave de importación para acceder a la función Asin().

Sintaxis:

func Asin(x complex128) complex128

Discutamos este concepto con la ayuda de los ejemplos dados:

Ejemplo 1:

// Golang program to illustrate how to find
// the Inverse Sine of Complex Number
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// Main function
func main() {
  
    // Finding inverse sine of the
    // specified complex number
    // Using Asin() function
    res_1 := cmplx.Asin(3 + 5i)
    res_2 := cmplx.Asin(-4 + 8i)
    res_3 := cmplx.Asin(-8 - 7i)
  
    // Displaying the result
    fmt.Println("Result 1:", res_1)
    fmt.Println("Result 2:", res_2)
    fmt.Println("Result 3:", res_3)
}

Producción:

Result 1: (0.5339990695941702+2.4598315216234306i)
Result 2: (-0.4611616352523445+2.886039504947561i)
Result 3: (-0.849771617866465-3.0565545070216835i)

Ejemplo 2:

// Golang program to illustrate how to find
// the Inverse Sine of Complex Number
  
package main
  
import (
    "fmt"
    "math/cmplx"
)
  
// Main function
func main() {
  
    cnumber_1 := complex(5, 7)
    cnumber_2 := complex(6, 9)
  
    // Finding inverse sine
    cvalue_1 := cmplx.Asin(cnumber_1)
    cvalue_2 := cmplx.Asin(cnumber_2)
  
    // Sum of two inverse sine values
    res := cvalue_1 + cvalue_2
  
    // Displaying results
    fmt.Println("Complex Number 1: ", cnumber_1)
    fmt.Println("Inverse sine 1: ", cvalue_1)
  
    fmt.Println("Complex Number 2: ", cnumber_2)
    fmt.Println("Inverse sine 2: ", cvalue_2)
    fmt.Println("Final sum: ", res)
  
}

Producción:

Complex Number 1:  (5+7i)
Inverse sine 1:  (0.617064296675988+2.846288828208389i)
Complex Number 2:  (6+9i)
Inverse sine 2:  (0.5860350919197013+3.075060767946888i)
Final sum:  (1.2030993885956893+5.921349596155277i)

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *