generate unique random matrix using key
5 ビュー (過去 30 日間)
古いコメントを表示
i want to get a key(integers/character/string) from the user and generate a random matrix using that key and particular to that key only. meaning if i again use that key for generating a matrix i would get similar matrix.matrix should be having unit8 values less than 256.
2 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 8 月 11 日
編集済み: Azzi Abdelmalek
2013 年 8 月 11 日
key=3 % for example
rng(key)
out=uint8(randi([0 255],2,4) % matrix 2x4
7 件のコメント
Azzi Abdelmalek
2013 年 8 月 11 日
I don't know if it's due to the version of your Matlab, or there is another problem. Maybe you should contact Mathworks technical support
Walter Roberson
2013 年 8 月 12 日
編集済み: Walter Roberson
2013 年 8 月 12 日
rng is only defined in later versions of MATLAB. see http://www.mathworks.com/help/matlab/ref/randstream.html
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!