Home
last modified time | relevance | path

Searched refs:RowVectorType (Results 1 – 15 of 15) sorted by relevance

/external/eigen/test/
Dproduct_selfadjoint.cpp17 typedef Matrix<Scalar, 1, MatrixType::RowsAtCompileTime> RowVectorType; in product_selfadjoint() typedef
30 RowVectorType r1 = RowVectorType::Random(rows), in product_selfadjoint()
31 r2 = RowVectorType::Random(rows); in product_selfadjoint()
Dvectorwiseop.cpp21 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType; in vectorwiseop_array() typedef
33 RowVectorType rowvec = RowVectorType::Random(cols); in vectorwiseop_array()
136 typedef Matrix<Scalar, 1, MatrixType::ColsAtCompileTime> RowVectorType; in vectorwiseop_matrix() typedef
150 RowVectorType rowvec = RowVectorType::Random(cols); in vectorwiseop_matrix()
Ddiagonalmatrices.cpp18 typedef Matrix<Scalar, 1, Cols> RowVectorType; in diagonalmatrices() typedef
31 RowVectorType rv1 = RowVectorType::Random(cols), in diagonalmatrices()
32 rv2 = RowVectorType::Random(cols); in diagonalmatrices()
Dproduct.h26 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> RowVectorType; in product() typedef
48 RowVectorType v1 = RowVectorType::Random(rows); in product()
173 RowVectorType w1(rows); in product()
Darray_for_matrix.cpp17 typedef Matrix<Scalar, 1, MatrixType::ColsAtCompileTime> RowVectorType; in array_for_matrix() typedef
27 RowVectorType rv1 = RowVectorType::Random(cols); in array_for_matrix()
61 VERIFY_IS_APPROX(m1.block(0,0,0,cols).colwise().sum(), RowVectorType::Zero(cols)); in array_for_matrix()
Dproduct_notemporary.cpp21 typedef Matrix<Scalar, 1, Dynamic> RowVectorType; in product_notemporary() typedef
32 RowVectorType rv1 = RowVectorType::Random(rows), rvres(rows); in product_notemporary()
Dproduct_extra.cpp16 typedef Matrix<Scalar, 1, Dynamic> RowVectorType; in product_extra() typedef
33 RowVectorType v1 = RowVectorType::Random(rows), vrres(rows); in product_extra()
Dblock.cpp39 typedef Matrix<Scalar, 1, MatrixType::ColsAtCompileTime> RowVectorType; in block() typedef
81 RowVectorType br1(m1.block(r1,0,1,cols)); in block()
Darray.cpp18 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType; in array() typedef
30 RowVectorType rv1 = RowVectorType::Random(cols); in array()
/external/eigen/doc/
DFunctionsTakingEigenTypes.dox160 typedef typename internal::plain_row_type<Derived>::type RowVectorType;
164 const RowVectorType x_mean = x.colwise().sum() / num_observations;
165 const RowVectorType y_mean = y.colwise().sum() / num_observations;
192 typedef typename internal::plain_row_type<Derived>::type RowVectorType;
196 const RowVectorType x_mean = x.colwise().sum() / num_observations;
197 const RowVectorType y_mean = y.colwise().sum() / num_observations;
/external/eigen/Eigen/src/QR/
DHouseholderQR.h61 typedef typename internal::plain_row_type<MatrixType>::type RowVectorType; typedef
231 RowVectorType m_temp;
DCompleteOrthogonalDecomposition.h65 typedef typename internal::plain_row_type<MatrixType>::type RowVectorType;
387 RowVectorType m_temp;
DColPivHouseholderQR.h66 typedef typename internal::plain_row_type<MatrixType>::type RowVectorType;
438 RowVectorType m_temp;
DFullPivHouseholderQR.h78 typedef typename internal::plain_row_type<MatrixType>::type RowVectorType;
416 RowVectorType m_temp;
/external/eigen/Eigen/src/SVD/
DUpperBidiagonalization.h33 typedef Matrix<Scalar, 1, ColsAtCompileTime> RowVectorType; typedef