This function converts a given Complex number to String representation.
encapsulated operator function 'String' import Complex; input Complex c "Complex number to be transformed in a String representation"; input String name = "j" "Name of variable representing sqrt(-1) in the string"; input Integer significantDigits = 6 "Number of significant digits that are shown"; output String s = ""; end 'String';