El método MathF.Acosh(Single) se utiliza para devolver el arcocoseno hiperbólico de un valor de coma flotante.
Sintaxis: public static float Acosh (float x);
Aquí, se necesita un número de punto flotante estándar.Valor devuelto: este método devuelve el arcocoseno 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.Acosh(Single) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value float value = 2.5f; // getting hyperbolic arc-cosine value // using Acosh() method float result = MathF.Acosh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is 1.566799
Ejemplo 2:
// C# program to demonstrate the // MathF.Acosh(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 Acosh() method float result = MathF.Acosh(value); // Display the value Console.WriteLine("Angle is {0}", result); } }
Producción:
Angle is NaN Angle is NaN Angle is NaN 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