HomeSort by relevance Sort by last modified time
    Searched defs:DenseSparseMatrix (Results 1 - 2 of 2) sorted by null

  /external/ceres-solver/internal/ceres/
dense_sparse_matrix.h 47 class DenseSparseMatrix : public SparseMatrix {
51 explicit DenseSparseMatrix(const TripletSparseMatrix& m);
52 explicit DenseSparseMatrix(const ColMajorMatrix& m);
54 DenseSparseMatrix(int num_rows, int num_cols);
55 DenseSparseMatrix(int num_rows, int num_cols, bool reserve_diagonal);
57 virtual ~DenseSparseMatrix() {}
dense_sparse_matrix.cc 42 DenseSparseMatrix::DenseSparseMatrix(int num_rows, int num_cols)
49 DenseSparseMatrix::DenseSparseMatrix(int num_rows,
63 DenseSparseMatrix::DenseSparseMatrix(const TripletSparseMatrix& m)
77 DenseSparseMatrix::DenseSparseMatrix(const ColMajorMatrix& m)
83 void DenseSparseMatrix::SetZero() {
87 void DenseSparseMatrix::RightMultiply(const double* x, double* y) const
    [all...]

Completed in 44 milliseconds