IMSUM function
IMSUM(firstParameter, otherParameters...) IMSUM(firstParameter; otherParameters...)
firstParameter
Text or { Text }
The first parameter.
otherParameters
Text or { Text } (accepts many)
Additional parameters.
Returns
Text
The sum of the given complex numbers.
Returns the sum of the given complex numbers.
Examples
IMSUM("1+2i",
"3+4i")IMSUM("1+2i";
"3+4i")
Returns "4+6i".
IMSUM({ "1+2i",
"3+4i" })IMSUM({ "1+2i"; "3+4i" })
Returns "4+6i".