replace find instruction for more fast precedure
Show older comments
I have a very long vector close to 100.000 values, well I need to know wich of them are == x, but "find" instruction it´s very delayded,¿How can I get fast speed or replace find ?
But I need the pointers of vector, not values!
Answers (1)
Adam
on 25 Oct 2016
myVec( myVec == x );
gives you a boolean indicator array of all those that match the expression, but it depends what you want to do with the information as to how best to use that.
1 Comment
Felipe Vidal
on 27 Oct 2016
Categories
Find more on Structures in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!