creating a new column with three columns
3 次查看(过去 30 天)
显示 更早的评论
hello everyone,
i have three columns with 25 rows each. Now I want to merge all the three columns to one in a way that the first three rows will be the 1st values of all the three columns.
for ex: col_1, col_2 col_3 I need New merge col
25 22 23 25
26 25 20 22
24 28 30 23
26 and so on
so at last i will get one column with total of 75 rows
thanks in advance.
0 个评论
采纳的回答
Himanshu Rai
2019-6-25
Use this
X = reshape(X', [75, 1])
11 个评论
Himanshu Rai
2019-6-25
Use this (here X is the new modified matrix after the above operations)
X = reshape(X, [3, 25]);
X = X';
a = X(:, 1);
b = X(:, 2);
c = X(:, 3);
更多回答(2 个)
Pullak Barik
2019-6-25
编辑:Pullak Barik
2019-6-25
I will proceed in the following way-
1) Merge col_1, col_2, col_3 into a single matrix.
2) Reshape the transpose of the array.
The following code does the same-
res = reshape([col_1 col_2 col_3].', [], 1)
2 个评论
Pullak Barik
2019-6-25
Are your col_1, col_2 and col_3 variables stored as column vectors or row vectors?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!