Version: 2019.1
public static float Log10 (float f);

説明

指定した数の底が 10 の対数を返します。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // logarithm of 100 in base 10 // Prints 2 print(Mathf.Log10(100)); } }