How can I create a matrix of N columns formed by just one vector?

9 visualizzazioni (ultimi 30 giorni)
Hi! If I have a vector like (5 8 7 9 8 4 7)' how can I create a matrix of N (for example 1000) columns formed by this vector? Thank you!

Risposta accettata

Ahmet Cecen
Ahmet Cecen il 23 Apr 2015
Modificato: Ahmet Cecen il 23 Apr 2015
for a row vector concatenated vertically:
A=repmat(vector,[1000 1]);
for a column vector concatenated horizontally:
A=repmat(vector,[1 1000]);

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by