aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/extmod/ulab/tests/2d/numpy/constructors.py.exp
blob: 07dd7b0aec76e29967f7273fbd35e57c5c3f11f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
array([1.0, 1.0, 1.0], dtype=float64)
array([[1.0, 1.0, 1.0],
       [1.0, 1.0, 1.0]], dtype=float64)
array([0.0, 0.0, 0.0], dtype=float64)
array([[0.0, 0.0, 0.0],
       [0.0, 0.0, 0.0]], dtype=float64)
array([[1.0, 0.0, 0.0],
       [0.0, 1.0, 0.0],
       [0.0, 0.0, 1.0]], dtype=float64)
array([1], dtype=int8)
array([1, 1], dtype=uint8)
array([1, 1, 1], dtype=int16)
array([1, 1, 1, 1], dtype=uint16)
array([1.0, 1.0, 1.0, 1.0, 1.0], dtype=float64)
array([0.0, 0.125, 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1.0], dtype=float64)