Skip to content
Advertisement

How to include numbers we need in a list which is generated by some stochastic algorithm

I need to implement a stochastic algorithm that provides as output the times and the states at the corresponding time points of a dynamic system. We include randomness in defining the time points by retrieving a random number from the uniform distribution. What I want to do, is to find the state at time points 0,1,2,…,24. Given the randomness of the algorithm, the time points 1, 2, 3,…,24 are not necessarily hit. We my include rounding at two decimal places, but even with rounding I can not find/insert all of these time points. The question is, how to change the code so as to be able to include in the list of the time points the numbers 1, 2,…, 24 while preserving the stochasticity of the algorithm ? Thanks for any suggestion.

JavaScript

Advertisement

Answer

After playing with your model, I conclude, that interpolation works fine.

Basically, just append the following lines to your code:

JavaScript

and if you have matplotlib installed, you can visualize using

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