MATLAB: How can i define two series of number in one coloumn

number

how can i define two series of number in one coloumn?
EX: a=1:10 , 62:73
i want gave answer like this: a=1 2 3 4 5 6 7 8 9 10 62 63 64 65 66 67 68 69 70 71 72 73

Best Answer

a = [1:10 , 62:73]