Effacer les filtres
Effacer les filtres

Repeat values in a matrix

1 vue (au cours des 30 derniers jours)
Athira Surendran
Athira Surendran le 4 Avr 2017
Modifié(e) : KSSV le 4 Avr 2017
I want to convert a column matrix of size 10x1 to 10x10000 matrix in which all columns in the converted matrix are same as the values in the initial column matrix,
For example, x=[a;b;c], if i convert this to a 3x3 matrix, it should be [a a a; b b b; c c c]

Réponse acceptée

KSSV
KSSV le 4 Avr 2017
Modifié(e) : KSSV le 4 Avr 2017
doc repmat
x = [1 2 3] ;
iwant = repmat(x,3,1)

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by