There is a method for index finding called indexOfObject
which returns a first value:
[mutableArray indexOfObject:[NSNumber numberWithFloat:someValue]];
The simple solution is to make loop and find all objects with the same value. Is any better way to get array of indexes for specific value?