Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function CplxToStr(const Z: TCplx; const Digits: Integer; Precision: Integer): string; | Converts complex number to a string. |
| 2 | function CplxToStr(const Z: TSCplx; const Digits: Integer; Precision: Integer): string; |
Overload 1: function CplxToStr(const Z: TCplx; const Digits: Integer; Precision: Integer): string;
Converts complex number to a string.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Z | TCplx | |
| 2 | Digits | Integer | |
| 3 | Precision | Integer |
Returns: String - complex number, converted to string.
Remarks:
The Digits parameter controls the minimum number of zeros in the exponent (between 0 and 4). The conversion uses general number format with 15 significant digits for double precision and 7 digits if you are using single precision version of Math387.
See Also: Math387.StrToCplx
Overload 2: function CplxToStr(const Z: TSCplx; const Digits: Integer; Precision: Integer): string;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Z | TSCplx | |
| 2 | Digits | Integer | |
| 3 | Precision | Integer |
Returns: String