HomeSort by relevance Sort by last modified time
    Searched refs:qr (Results 1 - 25 of 46) sorted by null

1 2

  /external/eigen/test/
qr_colpivoting.cpp 12 #include <Eigen/QR>
14 template<typename MatrixType> void qr() function
27 ColPivHouseholderQR<MatrixType> qr(m1);
28 VERIFY(rank == qr.rank());
29 VERIFY(cols - qr.rank() == qr.dimensionOfKernel());
30 VERIFY(!qr.isInjective());
31 VERIFY(!qr.isInvertible());
32 VERIFY(!qr.isSurjective());
34 MatrixQType q = qr.householderQ()
110 ColPivHouseholderQR<MatrixType> qr; local
    [all...]
qr_fullpivoting.cpp 12 #include <Eigen/QR>
14 template<typename MatrixType> void qr() function
26 FullPivHouseholderQR<MatrixType> qr(m1);
27 VERIFY(rank == qr.rank());
28 VERIFY(cols - qr.rank() == qr.dimensionOfKernel());
29 VERIFY(!qr.isInjective());
30 VERIFY(!qr.isInvertible());
31 VERIFY(!qr.isSurjective());
33 MatrixType r = qr.matrixQR()
93 FullPivHouseholderQR<MatrixType> qr; local
    [all...]
qr.cpp 11 #include <Eigen/QR>
13 template<typename MatrixType> void qr(const MatrixType& m) function
39 HouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
41 Matrix<Scalar,Rows,Cols> r = qr.matrixQR();
45 VERIFY_IS_APPROX(m1, qr.householderQ() * r);
50 m2 = qr.solve(m3);
71 HouseholderQR<MatrixType> qr(m1);
73 m2 = qr.solve(m3);
80 m3 = qr.householderQ(); // get a unitary
82 qr.compute(m1)
91 HouseholderQR<MatrixType> qr; local
    [all...]
householder.cpp 11 #include <Eigen/QR>
86 HouseholderQR<HBlockMatrixType> qr(hbm);
88 m2.block(shift,0,brows,cols) = qr.matrixQR();
89 HCoeffsVectorType hc = qr.hCoeffs().conjugate();
  /external/eigen/test/eigen2/
eigen2_qr.cpp 11 #include <Eigen/QR>
13 template<typename MatrixType> void qr(const MatrixType& m) function
16 QR.h
26 QR<MatrixType> qrOfA(a);
50 CALL_SUBTEST_1( qr(Matrix2f()) );
51 CALL_SUBTEST_2( qr(Matrix4d()) );
52 CALL_SUBTEST_3( qr(MatrixXf(12,8)) );
53 CALL_SUBTEST_4( qr(MatrixXcd(5,5)) );
54 CALL_SUBTEST_4( qr(MatrixXcd(7,3)) );
62 VERIFY(mat.qr().isFullRank())
    [all...]
  /external/webkit/Tools/Scripts/
detect-mismatched-virtual-const 76 $nestedParens = qr /
86 $nestedAngleBrackets = qr /
96 $bal = qr /([^:]+
VCSUtils.pm 101 my $chunkRangeRegEx = qr#^\@\@ -(\d+),(\d+) \+\d+,(\d+) \@\@$#; # e.g. @@ -2,6 +2,18 @@
102 my $gitDiffStartRegEx = qr#^diff --git (\w/)?(.+) (\w/)?([^\r\n]+)#;
103 my $svnDiffStartRegEx = qr#^Index: ([^\r\n]+)#;
104 my $svnPropertiesStartRegEx = qr#^Property changes on: ([^\r\n]+)#; # $1 is normally the same as the index path.
105 my $svnPropertyStartRegEx = qr#^(Modified|Name|Added|Deleted): ([^\r\n]+)#; # $2 is the name of the property.
106 my $svnPropertyValueStartRegEx = qr#^ (\+|-|Merged|Reverse-merged) ([^\r\n]+)#; # $2 is the start of the property's value (which may span multiple lines).
    [all...]
check-Xcode-source-file-types 132 my (undef, undef, $fileExtension) = map { lc($_) } fileparse(basename($filePath), qr{\.[^.]+$});
  /external/zlib/src/
zlib2ansi 21 my $sp = qr{ \s* (?: /\* .*? \*/ )? \s* }x; # assume no nested comments
23 my $d1 = qr{ $sp (?: [\w\*\s]+ $sp)* $sp \w+ $sp [\[\]\s]* $sp }x ;
24 my $decl = qr{ $sp (?: \w+ $sp )+ $d1 }xo ;
25 my $dList = qr{ $sp $decl (?: $sp , $d1 )* $sp ; $sp }xo ;
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 163 const ColPivHouseholderQR<Matrix< Scalar, Dynamic, Dynamic> > &qr,
185 const Index n = qr.matrixQR().cols();
194 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
195 const Index rank = qr.rank(); // use a threshold
198 qr.matrixQR().topLeftCorner(rank, rank).template triangularView<Upper>().solveInPlace(wa1.head(rank));
200 x = qr.colsPermutation()*wa1;
219 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2)/dxnorm;
220 qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
227 wa1[j] = qr.matrixQR().col(j).head(j+1).dot(qtb.head(j+1)) / diag[qr.colsPermutation().indices()(j)]
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
QR.h 17 class QR : public HouseholderQR<MatrixType>
24 QR() : Base() {}
27 explicit QR(const T& t) : Base(t) {}
54 /** \return the QR decomposition of \c *this.
56 * \sa class QR
59 const QR<typename MatrixBase<Derived>::PlainObject>
60 MatrixBase<Derived>::qr() const function in class:Eigen::MatrixBase
62 return QR<PlainObject>(eval());
  /external/ceres-solver/internal/ceres/
iterative_schur_complement_solver_test.cc 85 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
90 qr->Solve(&dense_A, b_.get(), per_solve_options, reference_solution.data());
schur_complement_solver_test.cc 69 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
76 // Gold standard solutions using dense QR factorization.
79 qr->Solve(&dense_A,
88 qr->Solve(&dense_A,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/arpa/
nameser_compat.h 52 unsigned qr: 1; /* response flag */ member in struct:__anon26091
70 unsigned qr :1; /* response flag */ member in struct:__anon26091
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
nameser_compat.h 52 unsigned qr: 1; /* response flag */ member in struct:__anon27681
70 unsigned qr :1; /* response flag */ member in struct:__anon27681
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
nameser_compat.h 52 unsigned qr: 1; /* response flag */ member in struct:__anon29196
70 unsigned qr :1; /* response flag */ member in struct:__anon29196
  /bionic/libc/private/
arpa_nameser_compat.h 103 unsigned qr: 1; /* response flag */ member in struct:__anon644
121 unsigned qr :1; /* response flag */ member in struct:__anon644
  /external/dnsmasq/src/
nameser.h 287 unsigned qr: 1; /* response flag */ member in struct:__anon7152
305 unsigned qr :1; /* response flag */ member in struct:__anon7152
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 17 #include <Eigen/QR>
141 HouseholderQR<MatrixType> qr(A);
144 ControlPointVectorType ctrls = qr.solve(MatrixType(pts.transpose())).transpose();
  /development/scripts/
combine_sdks.sh 93 zip $V -qr "$TMP_ZIP" "$LEAF"
  /external/grub/docs/
help2man 83 BEGIN { eval q(sub qr { '' =~ $_[0]; $_[0] }) if $] < 5.005 }
126 eval { $key = qr($pat) };
  /external/webkit/PerformanceTests/SunSpider/
sunspider-compare-results 153 $file2 = newestFile("$resultDirectory", qr/sunspider-results-.+\.js$/);
  /external/v8/benchmarks/
regexp.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-regexp.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-regexp.js     [all...]

Completed in 451 milliseconds

1 2