Open justinrporter opened 5 years ago
ra.RaggedArray( [[[1, 0, 0], [1, 0, 0], [1, 0, 0]], [[1, 0, 0], [0, 1, 0], [0, 1, 0]], [[1, 0, 0], [0, 1, 0], [0, 1, 0]]])
produces
RaggedArray([ [[1, 0, 0], [1, 0, 0], [1, 0, 0]], dtype=object, [[1, 0, 0], [0, 1, 0], [0, 1, 0]], dtype=object, [[1, 0, 0], [0, 1, 0], [0, 1, 0]], dtype=object])
where I expected a return type of
array([[[1, 0, 0], [1, 0, 0], [1, 0, 0]], [[1, 0, 0], [0, 1, 0], [0, 1, 0]], [[1, 0, 0], [0, 1, 0], [0, 1, 0]]])
@mizimmer90 we should talk about this behavior.
produces
where I expected a return type of
@mizimmer90 we should talk about this behavior.