OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vc2
(Results
1 - 3
of
3
) sorted by null
/external/eigen/test/eigen2/
product.h
55
ColVectorType
vc2
= ColVectorType::Random(cols), vcres(cols);
local
107
vcres =
vc2
;
109
VERIFY_IS_APPROX(vcres,
vc2
+ m1.transpose() * v1);
/external/eigen/test/
product.h
50
ColVectorType
vc2
= ColVectorType::Random(cols), vcres(cols);
local
99
vcres =
vc2
;
101
VERIFY_IS_APPROX(vcres,
vc2
+ m1.transpose() * v1);
111
vcres =
vc2
;
113
VERIFY_IS_APPROX(vcres,
vc2
- m1.transpose() * v1);
product_extra.cpp
34
ColVectorType
vc2
= ColVectorType::Random(cols), vcres(cols);
local
56
VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 *
vc2
),
57
(-m1.conjugate()*s2).eval() * (s1 *
vc2
).eval());
58
VERIFY_IS_APPROX((-m1 * s2) * (s1 *
vc2
.conjugate()),
59
(-m1*s2).eval() * (s1 *
vc2
.conjugate()).eval());
60
VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 *
vc2
.conjugate()),
61
(-m1.conjugate()*s2).eval() * (s1 *
vc2
.conjugate()).eval());
63
VERIFY_IS_APPROX((s1 *
vc2
.transpose()) * (-m1.adjoint() * s2),
64
(s1 *
vc2
.transpose()).eval() * (-m1.adjoint()*s2).eval());
65
VERIFY_IS_APPROX((s1 *
vc2
.adjoint()) * (-m1.transpose() * s2)
[
all
...]
Completed in 191 milliseconds