how to get the outputs of an expression with a random variable input
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I need hints on how to use random variable change as one of the input in an expression and get the (30)different outputs displayed for each of the random variable change. An example is shown below:
f=100;
a = 90
b = 100
z= a + (b-a)*rand(1:30)
c = 2; d = 2;
Y = f*b*c*z;
disp(Y); % display 30 Y outputs for all the random variable changes
0 件のコメント
採用された回答
Walter Roberson
2014 年 4 月 21 日
If you want a vector of 30 random numbers, you would use rand(1,30)
2 件のコメント
Walter Roberson
2014 年 4 月 21 日
The disp(Y) will do that. Your f, b, and c are scalars and your z is a vector (once you fix the rand() call), so your Y = f*b*c*z will be a vector, and disp(Y) will display that vector of 30 values.
その他の回答 (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!