aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/extmod/ulab/tests/2d/numpy/concatenate.py.exp
blob: 4310f352884e9a2f9149f189f1f5a036402b80fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], dtype=float64)
array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0], dtype=float64)
array([[1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0],
       [1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0]], dtype=float64)
array([[1.0, 2.0, 3.0, 1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0, 4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0, 7.0, 8.0, 9.0]], dtype=float64)
array([[1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0],
       [1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0]], dtype=float64)
array([[1.0, 2.0, 3.0, 1.0, 2.0, 3.0],
       [4.0, 5.0, 6.0, 4.0, 5.0, 6.0],
       [7.0, 8.0, 9.0, 7.0, 8.0, 9.0]], dtype=float64)