Log
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Log

  • Dark
    Light
  • PDF

Article Summary

Given a number, calculates its logarithm in the given base.

Function signature

LOG(number: Number, base: Number) => Number
ParameterDescription
NumberNumber to calculate the logarithm
BaseBase to calculate the logarithm

Examples

FormulaReturn value
LOG(1, 2)0
LOG(100, 10)2
LOG(10, 100)0.5

Was this article helpful?

What's Next