Mattoeplitz

Toeplitz-like matrix for Nx(N^2) and (N^2)xN martrices A,B.
237 Downloads
Updated 26 Apr 2010

View License

This file takes a matrix A that is Nx(N^2) and creates a Toeplitz-like matrix where the entries are the N NxN submatrices that are contained in A. Example: A=[[2 1;1 5] [0 4;9 8]] then
mattoeplitz(A)= the matrix

|2 1 0 4|
|1 5 9 8|
|0 4 2 1|
|9 8 1 5|

Cite As

Tim Dumouchel (2024). Mattoeplitz (https://www.mathworks.com/matlabcentral/fileexchange/27357-mattoeplitz), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2006a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Creating and Concatenating Matrices in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.1.0.0

There was an error when making receiving just one matrix. It would transpose each sub-matrix in the lower triangular half making symmetric matrix.

1.0.0.0