Turning a product of two vectors into a matrix without using for loops?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
daniel adams
il 8 Ott 2021
Risposto: Star Strider
il 8 Ott 2021
I have to two vectors x and y, each of length n. I want a matrix M where the elements of M are . How can I construct M on matlab without using a for loop?
0 Commenti
Risposta accettata
Star Strider
il 8 Ott 2021
I believe something like this should do what you want —
x = 1:10
y = 11:20
M = x(:)*y
Using ‘x’ as x(:) forces it to become a column vector. The rest is straightforward vector-matrix multiplication.
.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!