I have an array a=rand(100)
, I want to get every value except the values at the indices notidx=[2;50]
. Is there a clean way to get a
at the other values? I am looking for a good way to do both a copy and a view.
Currently I make the array [1;3:49;51:100]
by symdiff(1:100,notidx)
, but a[symdiff(1:length(a),notidx)]
and view(a,a[symdiff(1:length(a),notidx)])
are not very clean (or understandable to others) ways of doing this.
I don't have anything super clean, but you can do
a[setdiff(1:end, notidx)]
which is slightly cleaner than what you had, or
ind = trues(length(a))
ind[notidx] = false
a[ind]
which is pretty verbose but very clear.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With