Hello i want to ask is there a way to create an array
with custom values without using loop and assign the values for example i want to create array with [2,1]
shape and i want to fill the first column with value of (-1)
and the second with value of (2)
i have read the numpy docs “https://docs.scipy.org/doc/numpy-1.13.0/reference/routines.array-creation.html” but i didn’t find this functionality. Thank you for any help.
JavaScript
x
4
1
theta = np.array([1, 2]) <-- how to assign diff values per column ?
2
theta.fill(-1)
3
4
I want to obtain the following result
JavaScript
1
7
1
array([[-1, 2],
2
[-1, 2]
3
[-1, 2]
4
[-1, 2]])
5
6
7
Advertisement
Answer
Without using the syntax of a full loop you can do the following.
For a simple array you can do this:
JavaScript
1
2
1
array = [[-1,2] for _ in range(3)]
2
Otherwise, for a numpy array, (documentation here here) you can simply ass np.array (as follows):
JavaScript
1
2
1
array = np.array([[-1,2] for _ in range(3)])
2