Faster calculation of a porwer sum

1 view (last 30 days)
Ivan Gonzalez Bustos
Ivan Gonzalez Bustos on 26 Jul 2018
This function in my code is a bottleneck. Is it possible to make it run faster?
x and y are vectors of the same length and out is a matrix containing the power sum of x and y.
function [out] = powerSum2(x,y,order)
out = zeros(order+1);
for ii = 0:order
for jj = 0:order
out(ii+1,jj+1) = sum(x.^ii.*y.^jj);
end
end
end

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2016a

Community Treasure Hunt

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

Start Hunting!