I want to simulate N people and each for T amount of time, currently I have that the value of p for each person at T=0 is 0. How can I write this, so instead of having zeros at the first time period, I have a random number that is chosen from a distribution with the other values remaining equal?
N = 100
T = 70
p[N,T]
p[:,0] = 0.0
If you need to change the 1st value of the 2D array from a value taken from an early defined array you can follow this way. I have added an example for your reference.
output: [[0.6, 1, 1, 1, 1, 1], [0.5, 2, 2, 3, 3, 3], [0.9, 2, 3, 3, 3, 4]]