public static float Log (float f, float p);

Descripción

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

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { // 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.

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { // natural logarithm of 100 // prints 4.60517 Debug.Log(Mathf.Log(100)); } }