Scythe-1.0.3
template<typename T_type = double, matrix_order ORDER = Col, matrix_style STYLE = Concrete>
T_type* scythe::Matrix< T_type, ORDER, STYLE >::getArray ( ) const [inline]

Returns a pointer to this Matrix's internal data array.

This method returns a pointer to the internal data array contained within the DataBlock that this Matrix references.

Warning:
It is generally a bad idea to use this method. We provide it only for convenience. Please note that, when working with views, the internal data array may not even be stored in this Matrix's matrix_order. Furthermore, data encapsulated by a view will generally not be contiguous within the data array. It this is a concrete Matrix, getArray() will always return a pointer to a data array ordered like this Matrix and in contiguous storage.

Referenced by scythe::eigen(), scythe::Matrix< T_type, M_ORDER, M_STYLE >::equals(), scythe::qr_decomp(), scythe::qr_solve(), and scythe::svd().