simulatedTrajectories = {
const data = []
for( let r = 0; r < numberOfTrajectories; r++){
const startingArrayPos = (r * period)
data[startingArrayPos] = {timeStep: 0, value: initialValue, run: r}
for(let t = 1; t < period; t++){
const previousValue = data[startingArrayPos+t-1]['value']
const newValue = previousValue * (mu + noiseFunction())
data[startingArrayPos+t] = {timeStep: t, value: newValue, run: r}
}
}
return data
}