matrix NxN is changing in discret iterations

slovac

New member
Joined
Feb 5, 2015
Messages
10
Could you please help me?
  • I have a matrix whose functional values can be 0 or 1 and size is N.
  • I want the matrix to change in every discrete time iteration. Maximal number of iteration is 4.

Example:
i = 1
N = 3
1 0 0
1 0 0
1 0 0

i = 2
1 1 0
1 1 0
1 1 0

i = 3
1 1 1
1 1 1
1 1 1

i = 4
0 1 1
0 1 1
0 1 1

Could you please tell me whether I can use this notation to label such a matrix?
View attachment Apatri.bmp

Thank you
 
Top