1
The code below works normally, however the elements are "objects".
M = numpy.array([[1,2,3],[1,2],[1,2,3,4]],dtype=object)
However, when executing the code below, I receive the message "Setting an array element with a Sequence". The question is: how to make an array of INT that has this characteristic "[1,2,3],[1,2],[1,2,3,4]"?
M = numpy.array([[1,2,3],[1,2],[1,2,3,4]],dtype=numpy.uint8)