IMSUM function

IMSUM(First, Other...) IMSUM(First; Other...)

First

Text or { Text }

The first parameter.

Other

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".