El método MathF.Asinh(Single) se utiliza para devolver el arco-seno hiperbólico de un valor de coma flotante.
Sintaxis: public static float Asinh (float x);
Aquí, se necesita un número de punto flotante estándar.Valor devuelto: este método devuelve el arco-seno hiperbólico del valor dado. Si el número es menor que 1, devuelve NaN.
A continuación se muestran los programas para ilustrar el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to demonstrate the // MathF.Asinh(Single) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value float value = 1.5f; // getting hyperbolic arc-cosine value // using Asinh() method float result = MathF.Asinh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is 1.194763
Ejemplo 2:
// C# program to demonstrate the // MathF.Asinh(Single) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(0.19f); get(Single.NaN); get(Single.NegativeInfinity); get(Single.PositiveInfinity); } // defining get() method public static void get(float value) { // getting hyperbolic arc-cosine value // using Asinh() method float result = MathF.Asinh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is 0.188875 Angle is NaN Angle is -Infinity Angle is Infinity
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA