Problem 2694. The Matrix Construction

Given two input ,first one is CN (Column Number), Second one is Dim Can you produce such a matrix for example

CN=6; Dim=2

 K = [1     1     0     0     0     0
      0     0     1     1     0     0
      0     0     0     0     1     1]

CN=7; Dim=2

   K =[  1     1     0     0     0     0     0
         0     0     1     1     0     0     0
         0     0     0     0     1     1     0
         1     0     0     0     0     0     1]

Solution Stats

48.26% Correct | 51.74% Incorrect
Last Solution submitted on Feb 18, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers98

Suggested Problems

More from this Author21

Problem Tags

Community Treasure Hunt

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

Start Hunting!