Posts by user220300 • 11 points
1 post
-
0
votes1
answer41
viewsQ: I need to change the output of a variable in Python
My variable a, imported from a file .mat, has as output: array([[0],[1],[2],[3],[4],[5]]). I need the output of the variable a be it: array([0, 1, 2, 3, 4, 5]) How do I make this correction/change…