Matrix Question for 12*12 matrix

3 views (last 30 days)
I have a 12*12 matrix and i want to convert it into 9*9 matrix by eleminating first two colum and first two row and also the forth colum and row, which will leave me a 9*9 matrix. i want to remove 1,2 and 4 column and row from 12*12 matrix?

Accepted Answer

Alan Stevens
Alan Stevens on 24 Nov 2020
Supposing M is the 12x12 matrix, then
M([1,2,4],:)=[];
M(:,[1,2,4])=[];
should remove the appropriate rows and columns.
  2 Comments
Nikhil Kelaginmath
Nikhil Kelaginmath on 24 Nov 2020
Thank you for your answer
i want to to use both the matrix but now i am getting M as 9*9, how to i name 9*9 a new matrix?
Alan Stevens
Alan Stevens on 24 Nov 2020
First set, say, N = M, then reduce N to 9x9.

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!