/external/eigen/test/ |
qr_fullpivoting.cpp | 124 CALL_SUBTEST_6(qr_verify_assert<Matrix3d>());
|
stddeque.cpp | 110 CALL_SUBTEST_2(check_stddeque_matrix(Matrix3d()));
|
stdlist.cpp | 110 CALL_SUBTEST_2(check_stdlist_matrix(Matrix3d()));
|
adjoint.cpp | 111 CALL_SUBTEST_2( adjoint(Matrix3d()) );
|
product_trmv.cpp | 80 CALL_SUBTEST_3( trmv(Matrix3d()) );
|
qr_colpivoting.cpp | 142 CALL_SUBTEST_8(qr_verify_assert<Matrix3d>());
|
qtvector.cpp | 135 CALL_SUBTEST(check_qtvector_matrix(Matrix3d()));
|
stdvector.cpp | 125 CALL_SUBTEST_2(check_stdvector_matrix(Matrix3d()));
|
stdvector_overload.cpp | 139 CALL_SUBTEST_2(check_stdvector_matrix(Matrix3d()));
|
cholesky.cpp | 301 CALL_SUBTEST_7( cholesky_verify_assert<Matrix3d>() );
|
/external/eigen/doc/ |
C00_QuickStartGuide.dox | 83 Now look back at the second example program. We presented two versions of it. In the version in the left column, the matrix is of type \c MatrixXd which represents matrices of arbitrary size. The version in the right column is similar, except that the matrix is of type \c Matrix3d, which represents matrices of a fixed size (here 3-by-3). Because the type already encodes the size of the matrix, it is not necessary to specify the size in the constructor; compare <tt>MatrixXd m(3,3)</tt> with <tt>Matrix3d m</tt>. Similarly, we have \c VectorXd on the left (arbitrary size) versus \c Vector3d on the right (fixed size). Note that here the coefficients of vector \c v are directly set in the constructor, though the same syntax of the left example could be used too.
|
AsciiQuickReference.txt | 7 Matrix<double, 3, 3> A; // Fixed rows and cols. Same as Matrix3d. 168 EigenSolver<Matrix3d> eig(A); // [vec val] = eig(A)
|
/external/eigen/test/eigen2/ |
eigen2_newstdvector.cpp | 126 CALL_SUBTEST_1(check_stdvector_matrix(Matrix3d()));
|
eigen2_qtvector.cpp | 135 CALL_SUBTEST_1(check_qtvector_matrix(Matrix3d()));
|
eigen2_stdvector.cpp | 125 CALL_SUBTEST_1(check_stdvector_matrix(Matrix3d()));
|
eigen2_triangular.cpp | 152 CALL_SUBTEST_3( triangular(Matrix3d()) );
|
/external/webkit/Source/WebCore/css/ |
WebKitCSSMatrix.cpp | 181 return String::format("matrix3d(%f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f, %f)",
|
CSSParser.cpp | [all...] |
/external/eigen/Eigen/src/Core/ |
Matrix.h | 362 * For example, \c Matrix3d is a fixed-size 3x3 matrix type of doubles, and \c MatrixXf is a dynamic-size matrix of floats.
|
/external/eigen/Eigen/src/Eigenvalues/ |
SelfAdjointEigenSolver.h | 199 * Currently only 3x3 matrices for which the sizes are known at compile time are supported (e.g., Matrix3d).
|
/frameworks/base/core/java/android/view/ |
View.java | [all...] |