Mathf.Log10 Manual     Reference     Scripting  
Scripting > Runtime Classes > Mathf
Mathf.Log10

static function Log10 (f : float) : float

Description

Returns the base 10 logarithm of a specified number.

JavaScript
// logarithm of 100 in base 10
// Prints 2
print(Mathf.Log10(100));

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
print(Mathf.Log10(100));
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
print(Mathf.Log10(100))