Multiplying a Matrix with every column of another matrix
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Iman Askari
am 18 Feb. 2021
Kommentiert: Iman Askari
am 18 Feb. 2021
Suppose we have a matrix A with dimension a*n and another matrix B with dimensions n*b. I would like to multiply matrix A with every column in B to obtain a matrix C of dimension a*b, without using a for loop.
0 Kommentare
Akzeptierte Antwort
the cyclist
am 18 Feb. 2021
Do you mean you just want to do standard matrix multipication?
C = A * B
Or did I misunderstand?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!