Skip to content
Advertisement

How to add noise to row/column selection in python

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

Advertisement

Answer

Assuming this 10×10 input and getting column 3 ± 1:

JavaScript

used input:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement