I want to be able to set all the values in an ILArray<T> that are outside of a Min/Max value range to a Min/Max value.
Is there an ILNumerics array method that will do this?
for example in my 1000,1000 range array values range from 1 to 2000 but most of the data is in the range of 800-1000 so I want to set any value lower than 800 to 800 and any value higher than 1000 to 1000.
Without going through a nested for loop and checking every value is there a simpler way to do this?