given a = [ 1 7; 2 8; 3 9; 4 10; 5 11 ; 6 12]. using reshape and transpose, write statements to create a single row vector that is exactly like v = [ 1 4 7 10 2 5 8 11 3 6 9 12] in matlab
main.m
a = [17; 28; 39; 410; 511; 612];
a_transpose = a'; % Transpose the matrix av = reshape(a_transpose, 1, numel(a_transpose)); % Reshape the transposed matrix into a single row vector