Problem 7. Column Removal

Remove the nth column from input matrix A and return the resulting matrix in output B.

So if

 A = [1 2 3;
      4 5 6];

and

 n = 2 

then B is

 [ 1 3  
   4 6 ]

Solution Stats

49.14% Correct | 50.86% Incorrect
Last Solution submitted on Jan 11, 2026

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers27482

Problem Tags

Community Treasure Hunt

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

Start Hunting!