El método MathF.Atan(Single) se utiliza para devolver el ángulo cuya tangente se proporciona como un argumento de valor único. Si el argumento es NaN, el resultado será NaN.
Sintaxis: public static float Atan (float x);
Aquí, se necesita un número de punto flotante estándar.Valor devuelto: Este método devuelve un ángulo Θ, medido en radianes, su tipo es System.Single y el valor será menor que Single.MaxValue.
Ejemplo 1:
// C# program to demonstrate the // MathF.Atan(Single) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value float value = 0.5f; // getting absolute angle value in float // using Atan() method float round = MathF.Atan(value); // Display the value Console.WriteLine("Angle is {0}", round); } }
Producción:
Angle is 0.4636476
Ejemplo 2:
// C# program to demonstrate the // MathF.Atan(Single) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method Console.WriteLine("Angle(in radian) are respectively"); get(0.19f); get(0.23f); get(0.45f); get(0.67f); } // defining get() method public static void get(float value) { // getting absolute angle value in float // using Atan() method float round = MathF.Atan(value); // Display the value Console.WriteLine("Angle of Atan({0}) will be {1}", value, round); } }
Producción:
Angle(in radian) are respectively Angle of Atan(0.19) will be 0.1877619 Angle of Atan(0.23) will be 0.2260684 Angle of Atan(0.45) will be 0.4228539 Angle of Atan(0.67) will be 0.5903068
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA