How to create a matrix of NxN with numpy in Python

2 Answers

0 votes
import numpy as np

matrix = np.arange(9).reshape((3,3))

print(matrix)
 
 
 
'''
run:
 
[[0 1 2]
 [3 4 5]
 [6 7 8]]

'''

 



answered Nov 16, 2022 by avibootz
0 votes
import numpy as np

matrix = np.arange(25).reshape((5,5))

print(matrix)
 
 
 
'''
run:
 
[[ 0  1  2  3  4]
 [ 5  6  7  8  9]
 [10 11 12 13 14]
 [15 16 17 18 19]
 [20 21 22 23 24]]

'''

 



answered Nov 16, 2022 by avibootz

Related questions

2 answers 136 views
136 views asked Mar 4, 2022 by avibootz
1 answer 141 views
1 answer 116 views
116 views asked Mar 5, 2022 by avibootz
1 answer 152 views
1 answer 115 views
...