Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void WriteValues(DewStream *Dst, TPrecision Precision, TRounding Rounding = TRounding::rnTrunc) const; | Writes object Values content to a stream. |
| 2 | void WriteValues(DewStream *Dst) const; |
Overload 1: void WriteValues(DewStream *Dst, TPrecision Precision, TRounding Rounding = TRounding::rnTrunc) const;
Writes object Values content to a stream.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewStream * | |
| 2 | Precision | TPrecision | |
| 3 | Rounding = TRounding::rnTrunc | TRounding |
Remarks:
Writes the calling object Values content to the DstStream stream. No other values describing the data type or length are written to the DstStream. Number type is defined by the Precision parameter. Rounding defines the rounding for integer types. When saving double precision as single precision, all overflows are saved as INF (-INF). When saving to integer types all overflows are clipped. Attempt to save single precision as double precision will raise an exception. The paramateres must be the same as for the Matrix::WriteHeader method.
Note
Use this method separately only, if you want user defined storage format.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: void WriteValues(DewStream *Dst) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewStream * |
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler