Repeat middle rows and columns of an array - MATLAB Cody - MATLAB Central

Problem 1852. Repeat middle rows and columns of an array

Difficulty:Rate

Given an MxN numeric array (A), return an array (B) in which the middle rows and columns have each been repeated once. It may be easier to think of this problem as two operations: (1) repeat the middle rows, and then (2) repeat the middle columns.

The motivation for this problem is to create an array that, when used in blockproc(B,[2 2],fun), effectively incorporates a sliding window with 50% overlap. (NOTE: yes, nlfilter will work on array A, but it requires that the processing output be a scalar, whereas blockproc does not)

You may assume that M>1, N>1 (i.e. no scalars or vectors).

Example

If

A = [1  2  3  4
     5  6  7  8
     9  10 11 12
     13 14 15 16]

Then

B = [1  2  2  3  3  4
     5  6  6  7  7  8
     5  6  6  7  7  8
     9  10 10 11 11 12
     9  10 10 11 11 12
     13 14 14 15 15 16]

Solution Stats

50.0% Correct | 50.0% Incorrect
Last Solution submitted on Dec 03, 2024

Problem Comments

Solution Comments

Show comments
R2025a Pre-release highlights
This topic is for discussing highlights to the current R2025a Pre-release.
13
5

Problem Recent Solvers34

Suggested Problems

More from this Author44

Community Treasure Hunt

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

Start Hunting!
Go to top of page