__declspec(property(get = GetRows, put = SetRows)) int Rows;
Defines the number of matrix rows.
Read:
int GetRows() const;Write:
void SetRows(const int value) const;Remarks:
Use this property to set or get the number of the calling matrix rows. Setting the Rows does not affect the actual amount of memory allocated unless Rows*Cols is bigger than cache size.
Note
Always set the Matrix::Complex property before setting Rows. Complex is initially false and Rows is initially 0. You can also set the Rows property by calling the method.
See Also: Matrix::Cols, Matrix::Size
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler