Delete rows from matrix

5 views (last 30 days)
Mohamed Imbaby
Mohamed Imbaby on 9 May 2019
Edited: madhan ravi on 9 May 2019
Let's say we have matrix A=[1 2 3; 4 5 6; 7 8 9; 10 11 12], and b a number the user is inserting.
I want to delete 1st row if b=1, or delete the 2nd row if b=2 etc. Is this possible?

Accepted Answer

madhan ravi
madhan ravi on 9 May 2019
Edited: madhan ravi on 9 May 2019
A=[ 1 2 3;...
4 5 6;...
7 8 9;...
10 11 12]
b=2;
A(b,:)=[]

More Answers (1)

KSSV
KSSV on 9 May 2019
b = 1 ;
A(b,:) = [] ;

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!