maximizing efficiency in simple commands
Mostrar comentarios más antiguos
I have an array given by
x = [1 2 3 4];
I would like to create a matrix that looks like
M = [1 2 3 4;
1 2 3 4;
1 2 3 4;
1 2 3 4];
What's the most computationally efficient way to create M from x?
Respuesta aceptada
Más respuestas (1)
Andrei Bobrov
el 20 de Ag. de 2013
Editada: Andrei Bobrov
el 20 de Ag. de 2013
ones(4,1)*x
kron(ones(4,1),x)
Categorías
Más información sobre Data Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!