Home | History | Annotate | Download | only in blas

Lines Matching refs:col

38     for(int col=0 ; col<other.cols() ; ++col)
47 other.coeffRef(i,col) -= cjLhs.row(i).segment(actual_start,actual_k).transpose()
48 .cwiseProduct(other.col(col).segment(IsLower ? i-actual_k : i+1,actual_k)).sum();
51 other.coeffRef(i,col) /= cjLhs(i,IsLower ? k : 0);
74 for(int col=0 ; col<other.cols() ; ++col)
83 other.coeffRef(i,col) /= cjLhs(IsLower ? 0 : k, i);
86 other.col(col).segment(IsLower ? i+1 : i-actual_k, actual_k)
87 -= other.coeff(i,col) * cjLhs.col(i).segment(actual_start,actual_k);