Matrix::StringsToValues Method

Overload List

#SignatureDescription
1TMtx *StringsToValues(DewArray<DewString> aList, const DewString &Delimiter = kTab) const;
2TMtx *StringsToValues(DewArray<DewString> aList, int ListIndex, int ListLen, int Row, int Col, DewString Delimiter = kTab) const;
3TMtx *StringsToValues(tStrings *aList, const DewString &Delimiter = kTab) const;Convert strings to double (TCplx) and store them in the Values array.
4TMtx *StringsToValues(tStrings *aList, int ListIndex, int ListLen, int Row, int Col, DewString Delimiter = kTab) const;Convert strings from [ListIndex]..[ListIndex+ListLen-1] in aList to double (TCplx).

Overload 1: TMtx *StringsToValues(DewArray<DewString> aList, const DewString &Delimiter = kTab) const;

#NameTypeDescription
1aListDewArray<DewString>
2Delimiter = kTabconst DewString &
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: TMtx *StringsToValues(DewArray<DewString> aList, int ListIndex, int ListLen, int Row, int Col, DewString Delimiter = kTab) const;

#NameTypeDescription
1aListDewArray<DewString>
2ListIndexint
3ListLenint
4Rowint
5Colint
6Delimiter = kTabDewString
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: TMtx *StringsToValues(tStrings *aList, const DewString &Delimiter = kTab) const;

Convert strings to double (TCplx) and store them in the Values array.

#NameTypeDescription
1aListtStrings *
2Delimiter = kTabconst DewString &
Remarks:

Convert strings in aList to double (real number) and store them in the Values array of the calling matrix. Matrix::Rows property is set to aList.Count. Matrix::Complex and Matrix::Cols propertes are auto-detected. Complex numbers must follow the format: a+bi. All strings must have the same number of columns (numbers). Columns must be separated with a Delimiter. By default the delimiter is the tab charachter.

See Also: Matrix::ValuesToStrings
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 4: TMtx *StringsToValues(tStrings *aList, int ListIndex, int ListLen, int Row, int Col, DewString Delimiter = kTab) const;

Convert strings from [ListIndex]..[ListIndex+ListLen-1] in aList to double (TCplx).

#NameTypeDescription
1aListtStrings *
2ListIndexint
3ListLenint
4Rowint
5Colint
6Delimiter = kTabDewString
Remarks:

Store them in the Values array of the calling matrix, starting from element [Row,Cols]. The size of the calling matrix is not changed. If array bounds are overrun an exception is raised. Complex numbers must follow the format: a+bi.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler