Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Log10

static function Log10(f: float): float;
static float Log10(float f);
static def Log10(f as float) as float

Description

Returns the base 10 logarithm of a specified number.

	// logarithm of 100 in base 10
	// Prints 2
	print(Mathf.Log10(100));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        print(Mathf.Log10(100));
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

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