4. [30 pts] Create MATLAB variables to represent the following matrices, and use them in the exercises that follow.
a = [12 17 3 6]
b = [5 8 3; 1 2 3; 2 4 6]
c = [22; 17; 14]
(a) Assign to the variable x1 the second row of matrix b.
(b) Replace the second column of matrix b with the first three element of matrix a.
(c) Assign to the Matrix d the first three elements of vector a as the first column, the values in matrix c as column 2 and the values in first and third column of matrix b as the 3rd and 4th column.