Command to delete last row and column of a matrix
98 views (last 30 days)
Show older comments
Swati Sarangi
on 28 Jan 2020
Commented: Bhaskar R
on 28 Jan 2020
Hi,
Can anyone help me with the command to delete the last row and column of a 6 x 6 matrix?
Regards
Swati
0 Comments
Accepted Answer
Alex Mcaulley
on 28 Jan 2020
A(:,end) = []; %Delete last column
A(end,:) = []; %Delete last row
0 Comments
See Also
Categories
Find more on Particle Swarm 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!