Problem 42501. Toeplitize a matrix

Similar to Problem 3094. Hankelize a matrix, now consider Toeplitization of a matrix.

Given an input matrix A, convert it to a Toeplitz matrix B by replacing the diagonal of A with the mean of the respective diagonal. For example,

Input

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

Output:

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

Solution Stats

44.57% Correct | 55.43% Incorrect
Last Solution submitted on Jan 31, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers108

Community Treasure Hunt

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

Start Hunting!