MCPcopy Create free account
hub / github.com/GeoDaCenter/geoda / makeRowStd

Method makeRowStd

Regression/SparseMatrix.cpp:160–165  ·  view source on GitHub ↗

reverse the changes of the previos step -- makes a row-standardized matrix from a symmetric one

Source from the content-addressed store, hash-verified

158// reverse the changes of the previos step -- makes a
159// row-standardized matrix from a symmetric one
160void SparseMatrix::makeRowStd()
161{
162 for (int r = 0; r < size; ++r) {
163 row[ r ].mColumnDivRow( scale, r );
164 };
165}
166
167void SparseMatrix::IminusRhoThis( const double rho, const DenseVector &column,
168 DenseVector &result) const {

Callers 1

spatialErrorRegressionFunction · 0.80

Calls 1

mColumnDivRowMethod · 0.80

Tested by

no test coverage detected