More than 3 years have passed since last update.
import numpy as np
NR = 10
NC = 8
Z = np.ones((NR,NC))
print(Z)
_Z = [np.random.randint(0,9,NC)]
Z = np.append(Z, _Z, axis=0)
print(Z)
shape = Z.shape
_Z = np.random.randint(0,9,shape[0])
X = np.reshape(_Z, (shape[0],1))
Z = np.concatenate((Z,X),axis=1)
print(Z)
X = np.random.randint(0,9,shape[0])
Z = np.insert(Z, 0, X, axis=1)
print(Z)
shape = Z.shape
_Z = np.random.randint(0,9,shape[1])
Z = np.insert(Z, 0, _Z, axis=0)
print(Z)
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin