OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Covariance
(Results
1 - 7
of
7
) sorted by null
/external/ceres-solver/internal/ceres/
covariance.cc
31
#include "ceres/
covariance
.h"
41
Covariance
::
Covariance
(const
Covariance
::Options& options) {
45
Covariance
::~
Covariance
() {
48
bool
Covariance
::Compute(
54
bool
Covariance
::GetCovarianceBlock(const double* parameter_block1,
covariance_impl.h
38
#include "ceres/
covariance
.h"
51
explicit CovarianceImpl(const
Covariance
::Options& options);
77
Covariance
::Options options_;
covariance_test.cc
31
#include "ceres/
covariance
.h"
96
Covariance
::Options options;
285
void ComputeAndCompareCovarianceBlocks(const
Covariance
::Options& options,
288
//
covariance
computation is correct.
315
Covariance
covariance
(options);
316
EXPECT_TRUE(
covariance
.Compute(covariance_blocks, &problem_));
322
GetCovarianceBlockAndCompare(block1, block2,
covariance
, expected_covariance);
324
GetCovarianceBlockAndCompare(block2, block1,
covariance
, expected_covariance);
331
const
Covariance
& covariance
[
all
...]
covariance_impl.cc
43
#include "ceres/
covariance
.h"
92
CovarianceImpl::CovarianceImpl(const
Covariance
::Options& options)
118
<< "
Covariance
::GetCovarianceBlock called before
Covariance
::Compute";
120
<< "
Covariance
::GetCovarianceBlock called when
Covariance
::Compute "
124
//
covariance
block is also zero.
148
// Find where in the
covariance
matrix the block is located.
160
//
covariance
block begin.
167
LOG(WARNING) << "Unable to find
covariance
block for
[
all
...]
/external/ceres-solver/include/ceres/
covariance.h
55
// This class allows the user to evaluate the
covariance
for a
62
// non-linear least squares solve is to analyze the
covariance
of the
70
// independent variable x with mean f(x) and identity
covariance
. Then
76
// And the
covariance
of x* is given by
83
// If J(x*) is rank deficient, then the
covariance
matrix C(x*) is
88
// Note that in the above, we assumed that the
covariance
94
// Where S is a positive semi-definite matrix denoting the
covariance
99
// and the corresponding
covariance
estimate of x* is given by
104
//
covariance
matrix not equal to identity, then it is the user's
108
// is the inverse square root of the
covariance
matrix S
[
all
...]
problem.h
426
friend class
Covariance
;
/frameworks/native/services/sensorservice/
Fusion.cpp
131
class
Covariance
{
136
Covariance
() : mSumXX(0.0f), mSumX(0.0f), mN(0) { }
194
// process noise
covariance
matrix: G.Q.Gt, with
220
// initial
covariance
: Var{ x(t0) }
Completed in 2705 milliseconds