creating a new column with three columns
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (2)
Works also if the number of lines or columns is different to 25x3:
a = [col1 col2 col3]
b = reshape(a',[],1)
3 commentaires
Prakhar Modi
le 25 Juin 2019
Modifié(e) : Prakhar Modi
le 25 Juin 2019
Stephan
le 25 Juin 2019
see my edited answer
Prakhar Modi
le 25 Juin 2019
Modifié(e) : Prakhar Modi
le 25 Juin 2019
Pullak Barik
le 25 Juin 2019
Modifié(e) : Pullak Barik
le 25 Juin 2019
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 commentaires
Prakhar Modi
le 25 Juin 2019
Pullak Barik
le 25 Juin 2019
Are your col_1, col_2 and col_3 variables stored as column vectors or row vectors?
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!