Turning a product of two vectors into a matrix without using for loops?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
daniel adams
el 8 de Oct. de 2021
Respondida: Star Strider
el 8 de Oct. de 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 comentarios
Respuesta aceptada
Star Strider
el 8 de Oct. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!