Problem 3094. Hankelize a matrix

Similar to Problem 42501. Toeplitize a matrix, let's consider Hankelization of a matrix.

Given an input matrix A, convert it to a Hankel matrix B by replacing each skew-diagonal of A with its mean. For example,

Input

   A = [3     7    10     2
        3     5     1     2
        6     3     2     7]

Output:

   B = [3     5     7     2 
        5     7     2     2
        7     2     2     7]

Solution Stats

45.67% Correct | 54.33% Incorrect
Last Solution submitted on Jan 31, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers122

Community Treasure Hunt

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

Start Hunting!