I need to create an array A whose columns are columns in another array B. The problem is that the columns I need are not consecutive, so I can't do something like:
A = B[:, 1:4]
How can I do this?
I need to create an array A whose columns are columns in another array B. The problem is that the columns I need are not consecutive, so I can't do something like:
A = B[:, 1:4]
How can I do this?