Faster calculation of a porwer sum

3 visualizaciones (últimos 30 días)
Ivan Gonzalez Bustos
Ivan Gonzalez Bustos el 26 de Jul. de 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

Respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos


Versión

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by