OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Matrix3x3
(Results
1 - 5
of
5
) sorted by null
/external/eigen/doc/snippets/
HouseholderQR_solve.cpp
1
typedef Matrix<float,3,3>
Matrix3x3
;
2
Matrix3x3
m =
Matrix3x3
::Random();
/frameworks/rs/
rsMatrix3x3.cpp
28
void
Matrix3x3
::loadIdentity() {
40
void
Matrix3x3
::load(const float *v) {
44
void
Matrix3x3
::load(const rs_matrix3x3 *v) {
48
void
Matrix3x3
::loadMultiply(const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs) {
54
const float rhs_ij = ((const
Matrix3x3
*)rhs)->get(i, j);
55
ri0 += ((const
Matrix3x3
*)lhs)->get(j, 0) * rhs_ij;
56
ri1 += ((const
Matrix3x3
*)lhs)->get(j, 1) * rhs_ij;
57
ri2 += ((const
Matrix3x3
*)lhs)->get(j, 2) * rhs_ij;
65
void
Matrix3x3
::transpose() {
rsMatrix3x3.h
27
struct
Matrix3x3
: public rs_matrix3x3 {
45
Matrix3x3
tmp;
/external/ceres-solver/internal/ceres/
jet_quaternion_integration_test.cc
39
#include "util/math/
matrix3x3
.h"
141
Matrix3x3
<J> R;
172
Matrix3x3
<J> R;
191
Matrix3x3
<double> R;
/frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp
96
static void SC_MatrixTranspose_3x3(
Matrix3x3
*m) {
Completed in 533 milliseconds