summation of products of matrices
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like so have a fast solution to this problem
0 commentaires
Réponses (1)
Daniel Neubauer
le 4 Nov 2022
Modifié(e) : Daniel Neubauer
le 4 Nov 2022
take a look at
is that what you need?
p=3;
m=4;
i=5;
E=ones(p,p,i);
A=rand(p,m,i);
Sum=sum(pagemtimes(pagemtimes(A,'C',E,'N'),A),3)
4 commentaires
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!