Summing randomly generated numbers

1 回表示 (過去 30 日間)
Ashley Chan
Ashley Chan 2021 年 2 月 26 日
回答済み: KSSV 2021 年 2 月 26 日
I want to randomly generate two numbers between 0 and 1, and then sum those two numbers together. How would I go about doing this?
I currently have my randomly generated numbers coded as:
n1 = 0:0.1:0.9;
n2 = 0:0.1:0.9;
disp(n1(randi([1,numel(n1)])));
disp(n2(randi([1,numel(n2)])));

回答 (1 件)

KSSV
KSSV 2021 年 2 月 26 日
n1 = 0:0.1:0.9;
n2 = 0:0.1:0.9;
r1 = n1(randi([1,numel(n1)]));
r2 = n2(randi([1,numel(n2)]));
thesum = r1+r2
thesum = 1.3000

カテゴリ

Help Center および File ExchangeSources についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by