本文整理汇总了C++中MATRIX::rows方法的典型用法代码示例。如果您正苦于以下问题:C++ MATRIX::rows方法的具体用法?C++ MATRIX::rows怎么用?C++ MATRIX::rows使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MATRIX
的用法示例。
在下文中一共展示了MATRIX::rows方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: result
//////////////////////////////////////////////////////////////////////
// difference of two matrices
//////////////////////////////////////////////////////////////////////
MATRIX operator-(const MATRIX& A, const MATRIX& B)
{
MATRIX result(A.rows(), A.cols());
for (int y = 0; y < A.cols(); y++)
for (int x = 0; x < A.rows(); x++)
result(x,y) = A(x,y) - B(x,y);
return result;
}
示例2: y
//////////////////////////////////////////////////////////////////////
// Scale matrix
//////////////////////////////////////////////////////////////////////
MATRIX operator*(float alpha, const MATRIX& A)
{
MATRIX y(A.rows(), A.cols());
for (int i = 0; i < A.rows(); i++)
for (int j = 0; j < A.cols(); j++)
y(i,j) = A(i, j) * alpha;
return y;
}
示例3: initialise
void DbScan::initialise(const MATRIX& X)
{
points_.clear();
Point point;
for(unsigned i = 0; i < X.rows(); ++i)
{
point.id = i;
points_.push_back(point);
}
distances_.getDistances(X);
}
示例4: setBandwidth
Estimator<Mahalanobis>::Estimator(const MATRIX& X)
: X_(&X)
{
setBandwidth(scottBandwidth(X.rows(), X.columns(), 1.0));
setCovariance(X.transpose()*X);
}