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

1 2 3 4 5

  /external/eigen/doc/snippets/
HouseholderQR_householderQ.cpp 3 HouseholderQR<MatrixXf> qr(A);
4 Q = qr.householderQ();
5 thinQ = qr.householderQ() * thinQ;
  /external/eigen/test/
qr_fullpivoting.cpp 12 #include <Eigen/QR>
14 template<typename MatrixType> void qr() function
29 FullPivHouseholderQR<MatrixType> qr(m1);
30 VERIFY_IS_EQUAL(rank, qr.rank());
31 VERIFY_IS_EQUAL(cols - qr.rank(), qr.dimensionOfKernel());
32 VERIFY(!qr.isInjective());
33 VERIFY(!qr.isInvertible());
34 VERIFY(!qr.isSurjective());
36 MatrixType r = qr.matrixQR()
116 FullPivHouseholderQR<MatrixType> qr; local
    [all...]
qr.cpp 11 #include <Eigen/QR>
13 template<typename MatrixType> void qr(const MatrixType& m) function
38 HouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
40 Matrix<Scalar,Rows,Cols> r = qr.matrixQR();
44 VERIFY_IS_APPROX(m1, qr.householderQ() * r);
49 m2 = qr.solve(m3);
74 HouseholderQR<MatrixType> qr(m1);
76 m2 = qr.solve(m3);
83 m3 = qr.householderQ(); // get a unitary
85 qr.compute(m1)
97 HouseholderQR<MatrixType> qr; local
    [all...]
qr_colpivoting.cpp 12 #include <Eigen/QR>
94 template<typename MatrixType> void qr() function
107 ColPivHouseholderQR<MatrixType> qr(m1);
108 VERIFY_IS_EQUAL(rank, qr.rank());
109 VERIFY_IS_EQUAL(cols - qr.rank(), qr.dimensionOfKernel());
110 VERIFY(!qr.isInjective());
111 VERIFY(!qr.isInvertible());
112 VERIFY(!qr.isSurjective());
114 MatrixQType q = qr.householderQ()
290 ColPivHouseholderQR<MatrixType> qr; local
    [all...]
  /external/eigen/failtest/
bdcsvd_int.cpp 13 BDCSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
colpivqr_int.cpp 1 #include "../Eigen/QR"
13 ColPivHouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
fullpivqr_int.cpp 1 #include "../Eigen/QR"
13 FullPivHouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
jacobisvd_int.cpp 13 JacobiSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
qr_int.cpp 1 #include "../Eigen/QR"
13 HouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
  /external/pdfium/fxbarcode/qrcode/
BC_QRCodeWriter.cpp 79 CBC_QRCoder qr; local
80 if (!CBC_QRCoderEncoder::Encode(contents, ec, &qr))
83 outWidth = qr.GetMatrixWidth();
84 outHeight = qr.GetMatrixWidth();
86 memcpy(result, qr.GetMatrix()->GetArray(), outWidth * outHeight);
  /external/tensorflow/tensorflow/cc/training/
queue_runner_test.cc 118 std::unique_ptr<QueueRunner> qr; local
119 TF_EXPECT_OK(QueueRunner::New(queue_runner_def, &qr));
120 TF_CHECK_OK(qr->Start(session.get()));
121 TF_EXPECT_OK(qr->Join());
138 std::unique_ptr<QueueRunner> qr; local
139 TF_EXPECT_OK(QueueRunner::New(queue_runner_def, &qr));
140 TF_EXPECT_OK(qr->Start(session.get()));
141 TF_EXPECT_OK(qr->Join());
157 std::unique_ptr<QueueRunner> qr; local
158 TF_EXPECT_OK(QueueRunner::New(queue_runner_def, &qr));
171 std::unique_ptr<QueueRunner> qr; local
210 std::unique_ptr<QueueRunner> qr; local
247 std::unique_ptr<QueueRunner> qr; local
278 std::unique_ptr<QueueRunner> qr; local
292 std::unique_ptr<QueueRunner> qr; local
339 std::unique_ptr<QueueRunner> qr; local
373 std::unique_ptr<QueueRunner> qr; local
399 std::unique_ptr<QueueRunner> qr; local
    [all...]
coordinator_test.cc 147 std::unique_ptr<MockQueueRunner> qr; local
149 qr.reset(new MockQueueRunner(&coord));
150 qr->StartCounting(&counter, 10, &start);
151 TF_ASSERT_OK(coord.RegisterRunner(std::move(qr)));
201 std::unique_ptr<MockQueueRunner> qr(new MockQueueRunner(&coord));
202 TF_ASSERT_OK(coord.RegisterRunner(std::move(qr)));
209 MockQueueRunner* qr = new MockQueueRunner(&coord); local
210 TF_ASSERT_OK(coord.RegisterRunner(std::unique_ptr<RunnerInterface>(qr)));
213 qr->Stop();
  /external/tensorflow/tensorflow/python/training/
queue_runner_test.py 51 qr = queue_runner_impl.QueueRunner(queue, [count_up_to])
52 threads = qr.create_threads(sess)
59 self.assertEqual(0, len(qr.exceptions_raised))
72 qr = queue_runner_impl.QueueRunner(queue, [count_up_to_3, count_up_to_30])
73 threads = qr.create_threads(sess)
82 self.assertEqual(0, len(qr.exceptions_raised))
89 qr = queue_runner_impl.QueueRunner(queue, [_MockOp("i fail"),
91 threads = qr.create_threads(sess)
97 exceptions = qr.exceptions_raised
110 qr = queue_runner_impl.QueueRunner(q1, [enqueue1]
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
OLSMultipleLinearRegression.java 35 * <p>To solve the normal equations, this implementation uses QR decomposition
44 * (QR)<sup>T</sup> (QR) b = (QR)<sup>T</sup>y
57 /** Cached QR decomposition of X matrix */
58 private QRDecomposition qr = null; field in class:OLSMultipleLinearRegression
63 * Computes and caches QR decomposition of the X matrix.
77 * <p>This implementation computes and caches the QR decomposition of the X matrix.</p>
82 qr = new QRDecompositionImpl(X);
91 * <p>The implementation here uses the QR decomposition to compute th
    [all...]
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMpar.h 21 const QRSolver &qr,
47 s = qr.matrixR();
51 const Index n = qr.matrixR().cols();
60 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
61 const Index rank = qr.rank(); // use a threshold
67 x = qr.colsPermutation()*wa1;
86 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2)/dxnorm;
94 wa1[j] = s.col(j).head(j+1).dot(qtb.head(j+1)) / diag[qr.colsPermutation().indices()(j)];
118 lmqrsolv(s, qr.colsPermutation(), wa1, qtb, x, sdiag);
132 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2/dxnorm)
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
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/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/scapy/scapy/layers/
llmnr.py 24 BitField("qr", 0, 1),
44 qr = 1 variable in class:LLMNRResponse
48 self.qr == 1 and
49 other.qr == 0)
  /frameworks/native/libs/math/tests/
quat_test.cpp 242 quatd qr = quatd::fromAxisAngle(double3(0, 0, 1), M_PI / 2); local
243 EXPECT_EQ(mat4d(qr).toQuaternion(), qr);
249 EXPECT_EQ(qr, log(exp(qr)));
251 quatd qq = qr * qr;
252 quatd q2 = pow(qr, 2);
261 qr = quatd::fromAxisAngle(double3(0, 0, 1), M_PI / 4);
262 EXPECT_FLOAT_EQ(qr.x, qs.x)
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
eff_qr.go 16 var templ = template.Must(template.New("qr").Parse(templateStr))
20 http.Handle("/", http.HandlerFunc(QR))
27 func QR(w http.ResponseWriter, req *http.Request) {
34 <title>QR Link Generator</title>
38 <img src="http://chart.apis.google.com/chart?chs=300x300&cht=qr&choe=UTF-8&chl={{.}}" />
45 name=s value="" title="Text to QR Encode"><input type=submit
46 value="Show QR" name=qr>
  /prebuilts/go/linux-x86/doc/progs/
eff_qr.go 16 var templ = template.Must(template.New("qr").Parse(templateStr))
20 http.Handle("/", http.HandlerFunc(QR))
27 func QR(w http.ResponseWriter, req *http.Request) {
34 <title>QR Link Generator</title>
38 <img src="http://chart.apis.google.com/chart?chs=300x300&cht=qr&choe=UTF-8&chl={{.}}" />
45 name=s value="" title="Text to QR Encode"><input type=submit
46 value="Show QR" name=qr>
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 165 const ColPivHouseholderQR<Matrix< Scalar, Dynamic, Dynamic> > &qr,
189 const Index n = qr.matrixQR().cols();
198 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
199 const Index rank = qr.rank(); // use a threshold
202 qr.matrixQR().topLeftCorner(rank, rank).template triangularView<Upper>().solveInPlace(wa1.head(rank));
204 x = qr.colsPermutation()*wa1;
223 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2)/dxnorm;
224 qr.matrixQR().topLeftCorner(n, n).transpose().template triangularView<Lower>().solveInPlace(wa1);
231 wa1[j] = qr.matrixQR().col(j).head(j+1).dot(qtb.head(j+1)) / diag[qr.colsPermutation().indices()(j)]
    [all...]
  /external/lmfit/test/
py_qr.py 23 Q,R,P = la.qr(A, pivoting=True)
  /external/perfetto/src/ipc/
client_impl.cc 71 QueuedRequest qr; local
72 qr.type = Frame::kMsgBindService;
73 qr.request_id = request_id;
74 qr.service_proxy = service_proxy;
75 queued_requests_.emplace(request_id, std::move(qr));
105 QueuedRequest qr;
106 qr.type = Frame::kMsgInvokeMethod;
107 qr.request_id = request_id;
108 qr.method_name = method_name;
109 qr.service_proxy = std::move(service_proxy)
    [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/
queues.py 61 for qr in ops.get_collection(ops.GraphKeys.QUEUE_RUNNERS):
63 qr.create_threads(

Completed in 1023 milliseconds

1 2 3 4 5