maximizing efficiency in simple commands

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?

 Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 20 Ago 2013
Modificato: Azzi Abdelmalek il 20 Ago 2013
x=[1 2 3 4];
M=repmat(x,4,1)

1 Commento

Equivalently but removing the error checking:
x=[1 2 3 4];
M = x([1 1 1 1],:);

Accedi per commentare.

Più risposte (1)

Categorie

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by