Question: Write a function that creates a square matrix of an arbitrary size having the structure given in the example below. The size of the matrix

Write a function that creates a square matrix of an arbitrary size having the structure given in the example below. The size of the matrix is taken as an argument. Use numpy arrays to create the matrix.
For example:
Test Result
print(np.asarray(create_pattern(5), dtype=int))
[[55010]
[15501]
[01550]
[10155]
[01015]]
print(np.asarray(create_pattern(6), dtype=int))
[[550101]
[155010]
[015501]
[101550]
[010155]
[101015]]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!