Go to the source code of this file.
Namespaces | |
test_std_vector | |
Functions | |
def | test_std_vector.checkAllValues (li1, li2) |
def | test_std_vector.checkZero (v) |
Variables | |
list | test_std_vector.l1 = [rng.standard_normal(3), rng.standard_normal(2)] |
test_std_vector.l2 = eigenpy.StdVec_VectorXd(l1) | |
test_std_vector.l2_py = l2.tolist() | |
list | test_std_vector.l3 = [rng.standard_normal((2, 2)), rng.standard_normal((3, 1))] |
test_std_vector.l3_copy = copyStdVector(l3) | |
list | test_std_vector.l4 = [rng.standard_normal((3, 3)).T for _ in range(3)] |
test_std_vector.l4_copy = copyStdVector(l4) | |
test_std_vector.l4_copy2 = std_vector.copyStdVec_3x3(l4) | |
list | test_std_vector.l5 = [rng.standard_normal((2, 2)).T for _ in range(3)] |
test_std_vector.l5_copy = std_vector.StdVec_Mat2d(l5) | |
test_std_vector.l5_py = l5_copy.tolist() | |
test_std_vector.rng = np.random.default_rng(0) | |