Less time consuming substitution for if conditional

3 次查看(过去 30 天)
I have a long script with lots of if conditional and it takes a long time to run the code. Any suggestion to make it efficient for example a less time consuming substitution for if conditional.
for example:
if rim==core
rim=rim+1;
end
Can I change above if conditional to shorter script?

回答(2 个)

John D'Errico
John D'Errico 2019-9-29
I think you are focusing on the wrong things. This is NOT a slow operation.
Very likely, this is part of a large, inefficiently written code, where you are doing tests like that for the wrong reason. But we don't see your code.
So the first thing you should do is learn to use the profiler. It will tell you what lines of code are taking a lot of time. Then focus on them.
As importantly though, my guess is as I said, that your entire code is written inefficiently. You need to learn to use vectorized operations, where operations will apply to an entire set of values at once. That is how you will find significant speed boosts, NOT by hoping to save a hundreth of a millisecond on a simple test like that.
  1 个评论
Zeynab Mousavikhamene
@ John D'Errico: I am doing vectorized operations like varfun that works on etire set but I need to search specific criteria in each parameter of the set. I donot think there is a faster speed: No matter the design of the code, it needs to check each member of the vector for specific property.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2019-9-30
rim(rim == core) = core+1;

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by