strange power .^ operator behaviour
Show older comments
For vectors of length greater than >~100 elements it is more efficient to use multiple x.^2 than x.^n, where n is an integer n>=3. The performance can be ~x10-x100 better depends on the vector length and power.
Looks like that MATLAB has not optimally implemented operator '.^'. Any comments regarding this strange behaviour of ".^" operator???
11 Comments
The topic has been discussed before:
See also:
"Looks like that MATLAB has not optimally implemented operator '.^'."
It probably is for floating point numbers... which includes the power (i.e. input B) itself.
Adam
on 21 Feb 2020
I'd be surprised if any function including str2func would ever be the optimal way of doing something, to be honest! There's a whole load of Matlab functions that you have to work around or rewrite yourself for certain situations, though it is sometimes surprising when the most basic of functions can be outperformed by writing more obtuse code.
Adam
on 21 Feb 2020
Well, it demonstrably isn't, for all cases, but I don't know what the logic was behind the decision of how to implement it. Making a function behave optimally across all possible usages of it is an ill-defined problem unless it is a trivial case where one implementation is simply faster than all others in all cases. In most situations there is compromise and functions may be written to be optimal in what were considered to be the most common use cases. Whoever wrote the function or was involved on checking and signing off on it at Mathworks would be the ones most likely to be able to confirm the logic behind its implementation.
What is certain though is that the more ifs and elses and clauses you have in a function to check for certain cases and do different behaviour, the slower the function will be in a general case that didn't have those checks so it is always a trade-off.
For example, you could program a multiplication function like this
function result = multiply( a, b )
if all( a == 1)
result = b;
elseif all( b == 1 )
result = a;
else
result = a .* b;
end
putting aside any extra complexities of multiplication, for the sake of argument. It might be faster in the case where a or b is all ones (though I suspect on a modern machine that multiplying all values by 1 may well be quicker than evaluating an if-else statement anyway), but it is guaranteed to be slower in all other cases than simply always doing
result = a .* b
putting aside compiler optimisations which may simply optimise out the extra code.
Stephen23
on 21 Feb 2020
"All MATLAB users, which are using massively the power operator '.^' on large arrays, will very happy for any improvement."
I totally agree. Start here: https://blogs.mathworks.com/community/2008/01/14/making-a-feature-request/
Adam
on 21 Feb 2020
@Michal Kvasnicka - I seem to remember it was you who was making a big fuss about what should be answer vs what should be a comment not so long ago. If you want answers look in the answers section. Comments can be either read or ignored as you wish, but do at least serve the purpose of keeping your thread from falling down the board without you having to keep editing your posts regularly to achieve the same thing!
Michal
on 21 Feb 2020
Answers (2)
Steven Lord
on 21 Feb 2020
Performance is one key metric of whether a function is "effective". If you wanted a power function that was as performant as possible, we could implement the built-in equivalent of this:
fastestPower = @(x, n) [];
Obviously that's taking things to an absurd extreme. It should go without saying but I'll say it anyway, we wouldn't do that. As one of the people who would be asked to review such a proposal that would be an OMDB (Over My Dead Body) situation. [And I can imagine how Cleve would react if someone seriously proposed that!]
But that does illustrate a serious point, that performance is not the only key metric of whether a function is "effective". Accuracy is another key metric for a function. [The absurd example above maximizes performance while minimizing accuracy.] Balancing performance and accuracy and several other key metrics across the whole spectrum of input arguments (including taking into consideration how common each use case for a function is) is a multiobjective optimization problem.
If you know of a faster algorithm that we should consider, submit it as an enhancement request through Technical Support. It may be one we have already considered and rejected for various reasons (better performance but unacceptable loss of accuracy, for example, or it only performs better in extremely specific and uncommon cases for another example.) It may be something that we evaluate (or re-evaluate) and adopt.
Categories
Find more on Problem-Based Optimization Setup in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!