Efficiently find a value in a matrix

2 次查看(过去 30 天)
Hey all,
So I have a simple 1D matrix that I'm trying to find a specific value in. I know of a way to do it, but my main question is if anyone knows of a more effcient way? As of current, I'm using as part of an operation that occurs on the order of millions or even billions of times, and using the matlab profiler it's told me that this is far and beyond the most inefficient part of the whole process.
This is how I currently do it...the third line take up ~60% of my run time
DummyData = [1,3,5,7,9];
ValueToFind = 3;
[~,Index] = min(abs(DummyDaya - ValueToFind));
  2 个评论
Stephen23
Stephen23 2021-3-26
If you want to "find a specific value" why are you using code that just finds the closest value?
John Gilmore
John Gilmore 2021-3-29
Ah yes, sorry, I should have been a bit more clear. This is doing what I want, particularly that's finding a specific value if it exists in the matrix. If it doesn't exist, then it finds the closest one.

请先登录,再进行评论。

采纳的回答

weikang zhao
weikang zhao 2021-3-27
From the perspective of computational complexity, your code can no longer be optimized. You can seek help from GPU acceleration or parallel computing.
  1 个评论
John Gilmore
John Gilmore 2021-3-29
Yeah, that's sort of what I was unfortunately figuring. I guess I was wondering if anyone knew of more effcient built in functions, or maybe the built in functions have some bloat to them to make them more robust and someone knew of a smarter way to achieve the same result without using built-in functions.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by