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