Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void ValuesToStrings(tStrings *dstList, const DewString &Delimiter = kTab, const DewString &ReFormat = " 0.######;-0.#######", const DewString &ImFormat = "+0.######i;-0.######i"); | Converts the content of the matrix Values array to a list of strings. |
| 2 | void ValuesToStrings(tStrings *dstList, int ListIndex, int Row, int Col, int RowCount, int ColCount, DewString Delimiter = kTab, const DewString &ReFormat = " 0.######;-0.######", const DewString &ImFormat = "+0.######i;-0.######i"); | nvert calling matrix elements, starting with [Row,Col] and converting Len elements to strings. |
Overload 1: void ValuesToStrings(tStrings *dstList, const DewString &Delimiter = kTab, const DewString &ReFormat = " 0.######;-0.#######", const DewString &ImFormat = "+0.######i;-0.######i");
Converts the content of the matrix Values array to a list of strings.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | dstList | tStrings * | |
| 2 | Delimiter = kTab | const DewString & | |
| 3 | ReFormat = " 0.######;-0.#######" | const DewString & | |
| 4 | ImFormat = "+0.######i;-0.######i" | const DewString & |
Remarks:
Convert all elements of the calling matrix to strings with formating real parts with ReFormat, imaginary parts with ImFormat, using the text delimiter Delimiter and store them in aList, by using the Add method of TStrings object.
Declared in Dew::Math::TOpenCLMatrix · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: void ValuesToStrings(tStrings *dstList, int ListIndex, int Row, int Col, int RowCount, int ColCount, DewString Delimiter = kTab, const DewString &ReFormat = " 0.######;-0.######", const DewString &ImFormat = "+0.######i;-0.######i");
nvert calling matrix elements, starting with [Row,Col] and converting Len elements to strings.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | dstList | tStrings * | |
| 2 | ListIndex | int | |
| 3 | Row | int | |
| 4 | Col | int | |
| 5 | RowCount | int | |
| 6 | ColCount | int | |
| 7 | Delimiter = kTab | DewString | |
| 8 | ReFormat = " 0.######;-0.######" | const DewString & | |
| 9 | ImFormat = "+0.######i;-0.######i" | const DewString & |
Remarks:
Vormating real parts with ReFormat, imaginary parts with ImFormat, using the text delimiter Delimiter and store them in aList starting at ListIndex. If aList is not large enough, the method will use the Add method of aList object.
Declared in Dew::Math::TOpenCLMatrix · Dew.Math/clMtxVec.h · Cross-compiler