Functions | |
def | checkAllValues (li1, li2) |
def | checkZero (v) |
Variables | |
list | l1 = [rng.standard_normal(3), rng.standard_normal(2)] |
l2 = eigenpy.StdVec_VectorXd(l1) | |
l2_py = l2.tolist() | |
list | l3 = [rng.standard_normal((2, 2)), rng.standard_normal((3, 1))] |
l3_copy = copyStdVector(l3) | |
list | l4 = [rng.standard_normal((3, 3)).T for _ in range(3)] |
l4_copy = copyStdVector(l4) | |
l4_copy2 = std_vector.copyStdVec_3x3(l4) | |
list | l5 = [rng.standard_normal((2, 2)).T for _ in range(3)] |
l5_copy = std_vector.StdVec_Mat2d(l5) | |
l5_py = l5_copy.tolist() | |
rng = np.random.default_rng(0) | |
def test_std_vector.checkAllValues | ( | li1, | |
li2 | |||
) |
Definition at line 21 of file test_std_vector.py.
def test_std_vector.checkZero | ( | v | ) |
Definition at line 52 of file test_std_vector.py.
list test_std_vector.l1 = [rng.standard_normal(3), rng.standard_normal(2)] |
Definition at line 11 of file test_std_vector.py.
test_std_vector.l2 = eigenpy.StdVec_VectorXd(l1) |
Definition at line 12 of file test_std_vector.py.
test_std_vector.l2_py = l2.tolist() |
Definition at line 65 of file test_std_vector.py.
list test_std_vector.l3 = [rng.standard_normal((2, 2)), rng.standard_normal((3, 1))] |
Definition at line 13 of file test_std_vector.py.
test_std_vector.l3_copy = copyStdVector(l3) |
Definition at line 71 of file test_std_vector.py.
list test_std_vector.l4 = [rng.standard_normal((3, 3)).T for _ in range(3)] |
Definition at line 16 of file test_std_vector.py.
test_std_vector.l4_copy = copyStdVector(l4) |
Definition at line 42 of file test_std_vector.py.
test_std_vector.l4_copy2 = std_vector.copyStdVec_3x3(l4) |
Definition at line 48 of file test_std_vector.py.
list test_std_vector.l5 = [rng.standard_normal((2, 2)).T for _ in range(3)] |
Definition at line 18 of file test_std_vector.py.
test_std_vector.l5_copy = std_vector.StdVec_Mat2d(l5) |
Definition at line 93 of file test_std_vector.py.
test_std_vector.l5_py = l5_copy.tolist() |
Definition at line 94 of file test_std_vector.py.
test_std_vector.rng = np.random.default_rng(0) |
Definition at line 9 of file test_std_vector.py.