pn sequence generation using independent seed
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Dishant Arora
2014 年 3 月 7 日
s = rng; % rng seeds the random number generator
seq1 = rand(1,5);
rng(s);
seq2=rnd(1,5);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!