Info

此问题已关闭。 请重新打开它进行编辑或回答。

getting it in a matrix?

1 次查看(过去 30 天)
ck
ck 2016-5-4
关闭: MATLAB Answer Bot 2021-8-20
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?

回答(2 个)

Azzi Abdelmalek
Azzi Abdelmalek 2016-5-4
编辑:Azzi Abdelmalek 2016-5-4
reshape(A,20,[])'
  1 个评论
ck
ck 2016-5-5
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 2016-5-5
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