How to remove a set of values from a matrix/vector?
Hi. I have a large vector (i.e. 1-D matrix) of values, from which I'd like to remove a subset of the values, where the subset contains a non-sequential set of values from the original vector. For example: largevect = [1,2,3,4,5]subset = [2,5]desired result = [1,3,4] I'm wondering if a simple command or set of commands exists that could do this in JSL? I could do this with a For Loop, but wonder...