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

Description

Возвращает логарифм указанного числа с указанным основанием.

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);

Description

Возвращает натуральный (с основанием e) логарифм указанного числа.

using UnityEngine;

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