I want to select a specific row/column of a matrix i have, the twist however is that i want an added noise in the selection of the chosen row.
Example
I have a matrix m
of size 100x100
. I now want to select row 40 i.e. m[40,:].
What is actually wanted however is not an array with all values of row 40, but an array along the same axis with a small noise in the row selection. I.e. random values of row 38,39,40,41,42
JavaScript
x
9
1
[[1,2,3,4],
2
[5,6,7,8],
3
[9,1,2,3],
4
[4,5,6,7]]
5
6
noisy_selection = m[2,:]
7
8
i.e. noise_selection: [4,7,1,6]
9
Advertisement
Answer
Assuming this 10×10 input and getting column 3 ± 1:
JavaScript
1
15
15
1
# setting up example
2
np.random.seed(0)
3
a = np.arange(100).reshape(10, 10, order='F')
4
5
# target column
6
col = 3
7
8
# noise (+ -1/0/1)
9
rand = np.random.randint(-1, 2, a.shape[0])
10
# example:
11
# array([2, 3, 2, 3, 3, 4, 2, 4, 2, 2])
12
13
out = a[np.arange(a.shape[0]), col+rand]
14
# array([20, 31, 22, 33, 34, 45, 26, 47, 28, 29])
15
used input:
JavaScript
1
11
11
1
array([[ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90],
2
[ 1, 11, 21, 31, 41, 51, 61, 71, 81, 91],
3
[ 2, 12, 22, 32, 42, 52, 62, 72, 82, 92],
4
[ 3, 13, 23, 33, 43, 53, 63, 73, 83, 93],
5
[ 4, 14, 24, 34, 44, 54, 64, 74, 84, 94],
6
[ 5, 15, 25, 35, 45, 55, 65, 75, 85, 95],
7
[ 6, 16, 26, 36, 46, 56, 66, 76, 86, 96],
8
[ 7, 17, 27, 37, 47, 57, 67, 77, 87, 97],
9
[ 8, 18, 28, 38, 48, 58, 68, 78, 88, 98],
10
[ 9, 19, 29, 39, 49, 59, 69, 79, 89, 99]])
11