Azzera filtri
Azzera filtri

What is the matrix multiplication of these two vectors?

1 visualizzazione (ultimi 30 giorni)
A=[ 1 1 1 4 5] and B=[1 2 3 4 5]

Risposta accettata

Todd Leonhardt
Todd Leonhardt il 17 Mag 2016
Modificato: Todd Leonhardt il 17 Mag 2016
To do matrix multiplication the inner dimensions must agree. Both of your matrices are 1x5 vectors. You can do either of the following:
A' * B (results in a 5x5 matrix)
or
A * B' (results in a 1x1 scalar)

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 17 Mag 2016

Categorie

Scopri di più su Multidimensional Arrays 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!

Translated by