pn sequence generation using independent seed
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Urmila
el 7 de Mzo. de 2014
Respondida: Dishant Arora
el 7 de Mzo. de 2014
how to generate pn sequence using independent seed, and for the same seed the same sequence should be generated.i want to use it in watermarking algorithm.
0 comentarios
Respuesta aceptada
Dishant Arora
el 7 de Mzo. de 2014
s = rng; % rng seeds the random number generator
seq1 = rand(1,5);
rng(s);
seq2=rnd(1,5);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!