C# | Método Math.Log10() – Part 1

En C#, Math.Log10() es un método de clase Math. Se utiliza para devolver el logaritmo en base 10 de un número especificado.

Sintaxis:

public static double Log10(double val)

Parámetro:

val: Es el número especificado cuyo logaritmo se va a calcular y su tipo es System.Double .

Valor devuelto: Devuelve el logaritmo de val (base 10 logaritmo de val ) y su tipo es System.Double .

Nota: El parámetro val 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 Math.Log10(Double) method
using System;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // double values whose logarithm 
        // to be calculated
        double a = 4.55;
        double b = 0;
        double c = -2.45;
        double nan = Double.NaN;
        double positiveInfinity = Double.PositiveInfinity;     
        double negativeInfinity = Double.NegativeInfinity;
  
        // Input is positive number so output
        // will be logarithm of number
        Console.WriteLine(Math.Log10(a));
  
        // positive zero as argument, so output 
        // will be -Infinity
        Console.WriteLine(Math.Log10(b));
  
        // Input is negative number so output
        // will be NaN
        Console.WriteLine(Math.Log10(c));
  
        // Input is NaN so output
        // will be NaN
        Console.WriteLine(Math.Log10(nan));
  
        // Input is PositiveInfinity so output
        // will be Infinity
        Console.WriteLine(Math.Log10(positiveInfinity));
  
        // Input is NegativeInfinity so output
        // will be NaN
        Console.WriteLine(Math.Log10(negativeInfinity));
    }
}
Producción:

0.658011396657112
-Infinity
NaN
NaN
Infinity
NaN

Referencia: https://msdn.microsoft.com/en-us/library/system.math.log10(v=vs.110).aspx

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *