129 for (
int idx=0; idx <
rows*
cols; idx++) {
130 if ( std::isnan(
data[idx]) ) {
bool owner
logical value indicating whether the class instance is the owner of the stored data or not...
Matrix_real copy() const
Call to create a copy of the matrix.
int stride
The column stride of the array. (The array elements in one row are a_0, a_1, ... a_{cols-1}, 0, 0, 0, 0. The number of zeros is stride-cols)
scalar * data
pointer to the stored data
bool transposed
logical variable indicating whether the matrix needs to be transposed in CBLAS operations ...
bool conjugated
logical variable indicating whether the matrix needs to be conjugated in CBLAS operations ...
Base Class to store data of arrays and its properties.
int rows
The number of rows.
int cols
The number of columns.
bool isnan()
Call to check the array for NaN entries.
Matrix_real()
Default constructor of the class.
Class to store data of complex arrays and its properties.