How I can create this matrix?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/703552/image.png)
0 Commenti
Risposta accettata
Rik
il 5 Ago 2021
A simple loop with indexing will do the trick. But in this case you can also use the normal matrix multiplication
A=[1 3 0;2 3 3;2 2 5;3 1 6;4 0 4];
B=[1 5 6 2 6 4;3 6 7 4 7 5;5 3 8 5 8 3;5 2 9 6 3 7;6 6 3 2 1 3];
for k=1:size(A,2)
C(:,k)=sum(A(:,k).*B);
end
C
((A.')*B).'
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!