Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function FormatCplx(const Z: TCplx; const ReFormat: string; const ImFormat: string): string; | The complex number Z formated as a string. |
| 2 | function FormatCplx(const Z: TSCplx; const ReFormat: string; const ImFormat: string): string; |
Overload 1: function FormatCplx(const Z: TCplx; const ReFormat: string; const ImFormat: string): string;
The complex number Z formated as a string.
| # | Name | Description |
|---|---|---|
| 1 | Z | Defines complex number for formatting: Z=Re+I*Im. |
| 2 | ReFormat | Defines string format used for formating real part of Z. |
| 3 | ImFormat | Defines string format used for formating imaginary part of Z. |
Returns: String - the complex number Z formated as a string.
Remarks:
If ReFormat and ImFormat parameters are empty strings, the function calls Math387.CplxToStr.
See Also: Math387.FormatSample
Overload 2: function FormatCplx(const Z: TSCplx; const ReFormat: string; const ImFormat: string): string;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Z | TSCplx | |
| 2 | ReFormat | string | |
| 3 | ImFormat | string |
Returns: String