MathF.Sin(Single) es un método de clase MathF incorporado que devuelve el seno de un argumento de valor flotante dado (ángulo especificado).
Sintaxis: public static float Sin (float x);
Aquí, x es el ángulo (medido en radianes) cuyo seno se devolverá y el tipo de este parámetro es System.Single .
Valor devuelto: este método devolverá el seno de x de tipo System.Single . Si x es igual a NegativeInfinity, PositiveInfinity o NaN , este método devuelve NaN .
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to illustrate the // MathF.Sin(Single) Method using System; class GFG { // Main Method public static void Main(String[] args) { float a = 17f; // converting value to radians float b = (a * (MathF.PI)) / 180; // using method and displaying result Console.WriteLine(MathF.Sin(b)); a = 47f; // converting value to radians b = (a * (MathF.PI)) / 180; // using method and displaying result Console.WriteLine(MathF.Sin(b)); a = 96F; // converting value to radians b = (a * (MathF.PI)) / 180; // using method and displaying result Console.WriteLine(MathF.Sin(b)); } }
0.2923717 0.7313538 0.9945219
Ejemplo 2: Para mostrar el funcionamiento del método MathF.Sin(Single) cuando el argumento es NaN o infinity .
// C# program to illustrate the // MathF.Sin(Single) Method using System; class Geeks { // Main Method public static void Main(String[] args) { // Taking the positive, negative // infinity and NaN float positiveInfinity = float.PositiveInfinity; float negativeInfinity = float.NegativeInfinity; float nan = float.NaN; float result; // Here argument is negative infinity, // so the output will be NaN result = MathF.Sin(negativeInfinity); Console.WriteLine(result); // Here argument is positive infinity, // so the output will also be NaN result = MathF.Sin(positiveInfinity); Console.WriteLine(result); // Here the argument is NaN, so // the output will be NaN result = MathF.Sin(nan); Console.WriteLine(result); } }
NaN NaN NaN
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