Effacer les filtres
Effacer les filtres

pn sequence generation using independent seed

2 vues (au cours des 30 derniers jours)
Urmila
Urmila le 7 Mar 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.

Réponse acceptée

Dishant Arora
Dishant Arora le 7 Mar 2014
s = rng; % rng seeds the random number generator
seq1 = rand(1,5);
rng(s);
seq2=rnd(1,5);

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by