Lines Matching refs:row
65 // Greedily scale row/column pairs until there is no change.
71 const double row_norm = companion_matrix_offdiagonal.row(i).lpNorm<1>();
89 companion_matrix_offdiagonal.row(i) *= std::ldexp(1.0, -exponent);
274 int row = 0;
279 lhs(row, j) = pow(sample.x, degree - j);
281 rhs(row) = sample.value;
282 ++row;
287 lhs(row, j) = (degree - j) * pow(sample.x, degree - j - 1);
289 rhs(row) = sample.gradient;
290 ++row;