Problem 584. middleAsColumn: Return all but first and last element as a column vector

Given input A, return all but the first and last elements, arranged as a column vector. (I.e., all dimensions after the first should be singleton.)

For example,

>> middleAsColumn(eye(3))
ans =
   0
   0
   0
   1
   0
   0
   0

Solution Stats

28.42% Correct | 71.58% Incorrect
Last Solution submitted on Mar 25, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers595

Problem Tags

Community Treasure Hunt

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

Start Hunting!