Multiplication of two arrays of different size
28 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have two arrays of different size. For example, one array is 43008*24 and other one 33792*24. Ho can I multilpy them?
3 commentaires
the cyclist
le 2 Mai 2023
Let's make a smaller, manageable version of what you are asking for. Suppose
A = [2 3; 5 7; 11 13]
B = [4 6; 8 9; 10 12; 14 15]
You want C that somehow equals the product of A and B. What is the result in this case?
Réponses (1)
the cyclist
le 2 Mai 2023
A = [2 3; 5 7; 11 13];
B = [4 6; 8 9; 10 12; 14 15];
C = A * B.'
0 commentaires
Voir également
Catégories
En savoir plus sur Operators and Elementary Operations 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!