Remove the first, third and fifth rows of a matrix - MATLAB Cody - MATLAB Central

Problem 44415. Remove the first, third and fifth rows of a matrix

Difficulty:Rate

Given a matrix x with at least five rows, return a matrix y that includes all rows of x except for th 1st, the 3rd and 5th.

Example:

 Input:
 x = [1 1 1;
      2 2 2;
      3 3 3;
      4 4 4;
      5 5 5;
      6 6 6]
 Output:
 y = [2 2 2;
      4 4 4;
      6 6 6]

Solution Stats

25.66% Correct | 74.34% Incorrect
Last Solution submitted on Mar 06, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers591

Suggested Problems

More from this Author25

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page