Version: 5.4
public static float Log (float f, float p);

Descripción

Devuelve el logaritmo de un número especificado en una base especificada.

// logarithm of 6 in base 2
// prints 2.584963
Debug.Log(Mathf.Log(6, 2));

public static float Log (float f);

Descripción

Devuelve el logaritmo natural (base e) de un número especificado.

// natural logarithm of 100
// prints 4.60517
Debug.Log(Mathf.Log(100));