Faster calculation of a porwer sum

3 Ansichten (letzte 30 Tage)
Ivan Gonzalez Bustos
Ivan Gonzalez Bustos am 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

Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by