HomeSort by relevance Sort by last modified time
    Searched defs:cols2 (Results 1 - 3 of 3) sorted by null

  /external/eigen/test/
qr_fullpivoting.cpp 22 cols2 = internal::random<Index>(min_size,max_size), local
52 MatrixType m2 = MatrixType::Random(cols,cols2);
54 m2 = MatrixType::Random(cols,cols2);
65 m3 = m1 * MatrixType::Random(size,cols2);
lu.cpp 26 Index rows, cols, cols2; local
38 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE);
42 cols2 = cols = MatrixType::ColsAtCompileTime;
61 MatrixType m1(rows, cols), m3(rows, cols2);
62 CMatrixType m2(cols, cols2);
94 m2 = CMatrixType::Random(cols,cols2);
96 m2 = CMatrixType::Random(cols,cols2);
102 m3 = MatrixType::Random(rows,cols2);
104 m3 = MatrixType::Random(rows,cols2);
107 m3 = MatrixType::Random(rows,cols2);
    [all...]
qr_colpivoting.cpp 21 Index cols2 = internal::random<Index>(2, EIGEN_TEST_MAX_SIZE); local
51 MatrixType exact_solution = MatrixType::Random(cols, cols2);
65 template <typename MatrixType, int Cols2>
82 Matrix<Scalar, Cols, Cols2> exact_solution;
83 exact_solution.setRandom(Cols, Cols2);
84 Matrix<Scalar, Rows, Cols2> rhs = matrix * exact_solution;
85 Matrix<Scalar, Cols, Cols2> cod_solution = cod.solve(rhs);
90 Matrix<Scalar, Cols, Cols2> svd_solution = svd.solve(rhs);
99 Index rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE); local
139 MatrixType m2 = MatrixType::Random(cols,cols2);
    [all...]

Completed in 70 milliseconds