how to combine three different column into a single colum using colon

2 visualizaciones (últimos 30 días)
MONICA RAWAT
MONICA RAWAT el 18 de Feb. de 2020
Comentada: MONICA RAWAT el 18 de Feb. de 2020
suppose t1,t2,t3 are three different column
t1 t2 t3
1 2 3
10 20 30
40 50 60
so i want my output in a single colum as given below
t4
1:2:3
10:20:30
40:50:60
  2 comentarios
davide
davide el 18 de Feb. de 2020
You mean this:
>> t1=[1;10;40]
t1 =
1
10
40
>> t2=[2;20;50]
t2 =
2
20
50
>> t3=[3;30;60];
>> t4=[t1 t2 t3]
t4 =
1 2 3
10 20 30
40 50 60
MONICA RAWAT
MONICA RAWAT el 18 de Feb. de 2020
colon should come in between the number instead of space

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 18 de Feb. de 2020
If you have it in matrix...A use..
iwant = A(:) ;

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by