Quote from total_keops:
In Monte Carlo you dont care about the numbers themself but rather on their distribution. And it's a desirable feature to have pseudo random number because you can re-run the same simulation many times or run a different simulation with the same numbers.
But you are right, they are not random, they are pseudo random.
In Matlab you can do both, you can set it to restart at the same place randn('state',0); or if you omit it it will restart from where it was thus giving you "new" numbers.Quote from gkishot:
But don't they have the feature to randomize your random sequence to get a new sequence every time you run it?
Pseudo random numbers will be repeated after a while so you have to be carefull about that in your implementation. I dont remember what it is for Matlab.Quote from intradaybill:
Good post. I wonder if trully random number exist, since they always depend on the seed and thus the sequence will be repeated at some point in time.