Log10(float)
Returns the base 10 logarithm of a specified number.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static float Log10(float f)
Parameters
Returns
Type | Description |
|---|---|
| float |
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { // logarithm of 100 in base 10 // Prints 2 print(Mathf.Log10(100)); }}