MATLAB: Why float no. become integer

float

hi,
i have two vectors
the first one is float as:
c=[2.5 4 6.5 4.5 3]; c1=[1 2 10 9];
when merge them as:
c2=[c c1]
why c within c2 become [2 4 6 4 3]?
thanks in advance

Best Answer

I bet if you check class(c1) you will find it is an integer data type.