IMLOG10
function IMLOG10(arg1: any = null): number | string | boolean
Description
Returns the base-10 logarithm of a complex number.
Parameters
- arg1
any
null Is a complex number for which you want the common logarithm.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.IMLOG10("-2+2.5i"));