Sure. Roughly, seed is a nonnegative integer which serves as a unique identifier of a pseudo-random sequence. That is, for each particular seed there is a unique pseudo-random sequence ("pseudo" means it actually repeats itself for obvious reasons of practical realizibility). It is used, therefore, as a parameter of a pseudo-random generator.
If you really want to understand how it works, look at the code. Say, Mersenne twister (which is among pseudo-random generators used in MATLAB) may be found here:
Computers can't generate truly random numbers . To get pseudo random numbers the simplest algorithm is http://mathworld.wolfram.com/LinearCongruenceMethod.html
"xn" is the seed value based on which next random value is estimated. "seed" is the first value you give so that random numbers are unique (eventually repeated) . So if seed repeats then you end up getting a know sequence. Hence choice of seed is important -prime numbers !
Hello everyone, can you tell me how to create a pink signal? what values should be given for mean, variance, seed and sampling time? Thanks a lot to you