En C#, MathF.Log10(Single) es un método de clase MathF. Se utiliza para devolver el logaritmo en base 10 de un número especificado.
Sintaxis: public static float Log10 (float x);
Aquí, x es el número especificado cuyo logaritmo se calculará y su tipo es System.Single .
Valor devuelto: Devuelve el logaritmo de val (base 10 logaritmo de val ) y su tipo es System.Single .
Nota: El parámetro x siempre se especifica como un número de base 10. El valor devuelto depende del argumento pasado. A continuación se muestran algunos casos:
- Si el argumento es positivo , el método devolverá el logaritmo natural o log 10 (val) .
- Si el argumento es cero , entonces el resultado es NegativeInfinity .
- Si el argumento es negativo (menor que cero) o igual a NaN , entonces el resultado es NaN .
- Si el argumento es PositiveInfinity , el resultado es PositiveInfinity .
- Si el argumento es NegativeInfinity , el resultado es NaN .
Ejemplo:
// C# program to demonstrate working // of MathF.Log10(Single) method using System; class Geeks { // Main Method public static void Main(String[] args) { // float values whose logarithm // to be calculated float a = 9.887f; float b = 0f; float c = -4.45f; float nan = Single.NaN; float positiveInfinity = Single.PositiveInfinity; float negativeInfinity = Single.NegativeInfinity; // Input is positive number so output // will be logarithm of number Console.WriteLine(MathF.Log10(a)); // positive zero as argument, so output // will be -Infinity Console.WriteLine(MathF.Log10(b)); // Input is negative number so output // will be NaN Console.WriteLine(MathF.Log10(c)); // Input is NaN so output // will be NaN Console.WriteLine(MathF.Log10(nan)); // Input is PositiveInfinity so output // will be Infinity Console.WriteLine(MathF.Log10(positiveInfinity)); // Input is NegativeInfinity so output // will be NaN Console.WriteLine(MathF.Log10(negativeInfinity)); } }
Producción:
0.9950646 -Infinity NaN NaN Infinity 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