random generator on level of bytes

9 ビュー (過去 30 日間)
Tessa Aus
Tessa Aus 2019 年 6 月 20 日
コメント済み: John D'Errico 2019 年 6 月 20 日
I need to create a column using the randi function to generate random numbers that are divisible of 8 for bytes. Example: 512, 64, 128, 1048576.
Currently tried Data_Bytes = randi([8,1048576],8,1)
Obviously it does not give me items divisible by 8 and know I need to use the divisible(8) function but do not know how to combine the two for a successful output.
Thank you!

採用された回答

James Tursa
James Tursa 2019 年 6 月 20 日
編集済み: James Tursa 2019 年 6 月 20 日
Generate random integers and then multiply them by 8 to guarantee that the result is divisible by 8. E.g., something like:
max_value = 1048576/8;
n = 8;
Data_Bytes = randi(max_value,n,1)*8;
  1 件のコメント
John D'Errico
John D'Errico 2019 年 6 月 20 日
+1. The important thing to recognize is that you need to look at it from the right point of view. Instead of thinking about this as a problem of generating random numbers divisible by 8, think about generating random integers, and THEN multiply by 8. That insures the desired result.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by