Calculate only diagonal elements of multidimensional array product

1 vue (au cours des 30 derniers jours)
Michael Werther
Michael Werther le 28 Nov 2019
Commenté : Michael Werther le 13 Déc 2019
Hi everybody,
I have two arrays and , where M is small and N is large. What would be the fastest way to calculate for all l? I could do
sum(repmat(A.',[1,1,N]).*B,1), but since N is large this doesn't seem the best idea to me. Any help is appreciated.
Thanks
  3 commentaires
Michael Werther
Michael Werther le 28 Nov 2019
Modifié(e) : Michael Werther le 28 Nov 2019
Dear David,
thank you for your prompt reply. In contrast to my first intention and although it is indeed faster, this is unfortunately not giving the desired result. Probably this was my fault, since I did not pose the question precisely. Actually I need to calculate for all l. I have specified this in the question.
David Goodmanson
David Goodmanson le 2 Déc 2019
Hi Michael, your question was pretty clear since it's only a single sum instead of a double one, so my comment is toast.

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 2 Déc 2019
Modifié(e) : Matt J le 2 Déc 2019
Assuming your Matlab version is post-R2016b
reuslt = sum(B.*A.',1)
Otherwise, assuming your Matlab version is post-R2008
result = sum(bsxfun(@times, B,A.'),1)
And even if your Matlab version is really, really, really old, then there is still as a last resort,
At=A.';
C=diag(At(:))*reshape(B,[],N));
result=sum(reshape(C,M,M,N),1)
  1 commentaire
Michael Werther
Michael Werther le 13 Déc 2019
Dear Matt,
thank your for your reply. This is indeed what I was looking for - never thought it could be that easy!

Connectez-vous pour commenter.

Plus de réponses (1)

Matt J
Matt J le 2 Déc 2019
Modifié(e) : Matt J le 2 Déc 2019
Since M is small, a for-loop would probably also be fine,
[j,k]=sub2ind([M,M],1:M.^2);
for i=1:M^2
B(j(i),k(i),:)=B(j(i),k(i),:).*A(k(i),j(i));
end
result=sum(B,1);

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by