Home | History | Annotate | Download | only in test

Lines Matching refs:cols

23   Index cols = m.cols();
27 MatrixType m1 = MatrixType::Random(rows, cols);
33 for ( int j = 0; j < cols; j++ ) {
34 VERIFY_IS_APPROX(m1_r(i, j), m1(rows - 1 - i, cols - 1 - j));
41 for ( int j = 0; j < cols; j++ ) {
42 VERIFY_IS_APPROX(m1_rd(i, j), m1(rows - 1 - i, cols - 1 - j));
49 for ( int j = 0; j < cols; j++ ) {
50 VERIFY_IS_APPROX(m1_rb(i, j), m1(rows - 1 - i, cols - 1 - j));
57 for ( int j = 0; j < cols; j++ ) {
65 for ( int j = 0; j < cols; j++ ) {
66 VERIFY_IS_APPROX(m1_rh(i, j), m1(i, cols - 1 - j));
79 for ( int j = 0; j < cols; j++ ) {
87 for ( int j = 0; j < cols; j++ ) {
88 VERIFY_IS_APPROX(m1_rr(i, j), m1(i, cols - 1 - j));
95 c = internal::random<Index>(0, cols-1);
98 VERIFY_IS_APPROX(x, m1(rows - 1 - r, cols - 1 - c));
105 VERIFY_IS_APPROX(x, m1(r, cols - 1 - c));