Difference between revisions of "Excel to Analytica Mappings/Engineering Functions"
Line 63: | Line 63: | ||
= IMLOG10 = | = IMLOG10 = | ||
= IMLOG2 = | = IMLOG2 = | ||
− | = IMPOWER = | + | = IMPOWER(inumber,number) = |
+ | |||
+ | Analytica equivalent: | ||
+ | [[CPower]](inumber,number) | ||
+ | |||
+ | ''inumber'' must be a complex, defined using [[Complex]]. Do not pass a real. | ||
+ | |||
+ | To use, add the Complex Library to your model. | ||
+ | |||
= IMPRODUCT = | = IMPRODUCT = | ||
= IMREAL = | = IMREAL = |
Revision as of 04:46, 11 January 2008
BESSELI
BESSELJ
BESSELK
BESSELY
BIN2DEC
BIN2HEX
BIN2OCT
COMPLEX(re,im)
Analytica equivalent:
Complex(re,im)
To use, add the Complex Library to your model.
CONVERT
DEC2BIN
DEC2HEX
DEC2OCT
DELTA
ERF(lower_limit,upper_limit)
Analytica equivalent of Erf(lower_limit) is:
Erf(lower_limit)
Analytica equivalent of Erf(lower_limit,upper_limit) is:
Erf(upper_limit) - Erf(lower_limit)
ERFC(x)
Analytica equivalent:
1-Erf(x)
GESTEP(n,step)
Analytica equivalent of GESTEP(n):
(n >= 0)
Analytica equivalent of GESTEP(n,s):
(n >= s)
HEX2BIN
IMABS
IMAGINARY(c)
Analytica equivalent:
Im(c)
To use, add the Complex Library to your model.
IMARGUMENT
IMCONJUGATE(c)
Analytica equivalent:
Complex( Re(c), -Im(c) )
To use, add the Complex Library to your model.
IMCOS
IMDIV
IMEXP
IMLN
IMLOG10
IMLOG2
IMPOWER(inumber,number)
Analytica equivalent:
CPower(inumber,number)
inumber must be a complex, defined using Complex. Do not pass a real.
To use, add the Complex Library to your model.
IMPRODUCT
IMREAL
IMSIN
IMSQRT
IMSUB
IMSUM
OCT2BIN
OCT2DEC
OCT2HEX
Comments
Enable comment auto-refresher