Info

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

getting it in a matrix?

1 visualizzazione (ultimi 30 giorni)
ck
ck il 4 Mag 2016
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Say I have 1000 values in a single column, how can I transform them into matrix in which I get first 20 values in first row and next 20 in the next row and so on in 1 column. Like basically 1 column and 50 rows?

Risposte (2)

Azzi Abdelmalek
Azzi Abdelmalek il 4 Mag 2016
Modificato: Azzi Abdelmalek il 4 Mag 2016
reshape(A,20,[])'
  1 Commento
ck
ck il 5 Mag 2016
row 1: 1 row 2: 199 row 3: 1 row 4: 199 ....... this is how the output I got is, how can I make it row 1: 1 199 row : 1 199??

CS Researcher
CS Researcher il 5 Mag 2016
Let x be the column vector. Try this:
modifiedX = reshape(x,numel(x)/20,20)';

Community Treasure Hunt

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

Start Hunting!

Translated by