Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

how to increase the a column matrix of 780 elements in to 780X780 matrix withthe same elements..??

1 visualizzazione (ultimi 30 giorni)
i have a column matrix of 780 elements, but i want to increase it in to 780X780 size,but its columns should be the repetition of the first column..

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 14 Feb 2014
Modificato: Azzi Abdelmalek il 14 Feb 2014
repmat(c1,1,780)
%Example
c1=[1;2;3;4] % Example
out=repmat(c1,1,numel(c1))

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by