photo

ksam K


Last seen: 4 years ago Active since 2017

Followers: 0   Following: 0

Message

Statistics

All
  • CUP Challenge Master
  • Commenter
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
How to create a checkerboard matrix without inbuilt function.
%Hope this helps you. function a = checkerboard(n) a = zeros(n); for i = 1:n for j = 1:n if (i == j)...

6 years ago | 2