Hello, I am trying to create an ArrayView with column indexer like [2,7,8,10] or even a repeating example like [2,7,7,10]. E.g.
X = rand(10,10) view(X, :, [2,7,8,10]) Is this possible at the moment ? The documentation of ArrayViews says that four types of indexers are supported: integer, range (*e.g.* a:b), stepped range (*e.g.* a:b:c), and colon (*i.e.*, :). Thanks, Jan
