Creation of a matrix (24,72) with unit lower triangular matrix?

Hello. I want to create a matrix M5(24,72) (see fig) using a unit lower triangular matrix.

More Answers (1)

Try this (caution, untested):
M5 = zeros(24,72);
M5(:,1:3:end) = tril(ones(24,24));

Categories

Community Treasure Hunt

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

Start Hunting!