Please use MATLAB to answer the following. Also please post coding and pictures
ID: 3787859 • Letter: P
Question
Please use MATLAB to answer the following. Also please post coding and pictures - thank you!!
3. Clear your workspace. Given the Matrix A [5.-17, 23.34 12l create that is the sum of the column element ofA and your values b) Find te maximum value in A am looking for one what gommand did you use. what command will you use to the average ofthe diapeal elenlerts A. dy Create a vector from Ausing only the column ene elements and eallitx. Then create a row vector from Ausirgthe last element ofeelumnenrfollewed by the two elements ofcolumn 3 and calli y Wrile the command you usedlo create the two vectors:Explanation / Answer
I hope u it is 3x3 matrix
a) sum(A) gives the column wise of a matrix
b)[M I]= max(A(:))
c)t= avg(diag(A))
d)x = A(1,:)
y =A(1:3,3:2,3:3)