キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
言語を選択 翻訳バーを非表示
pawndreal_
Level I

Combinations

Hello, I just want to ask how do i generate  6 random numbers ranging from 1 to 100 from which the user indicates the number of combinations to be generated? 

1 件の受理された解決策

受理された解決策

Re: Combinations

JMP has many pseudo-random number generators. Use this one:

 

Random Integer( 1, 100 );

 

You can construct a vector with the J() function. Here is a call to produce a column vector of six random variables:

 

J( 6, 1, Random Integer( 1, 6 ) );

I am not clear what you need when you say "from which a user indicates the number of combinations to be generated."

元の投稿で解決策を見る

3件の返信3

Re: Combinations

JMP has many pseudo-random number generators. Use this one:

 

Random Integer( 1, 100 );

 

You can construct a vector with the J() function. Here is a call to produce a column vector of six random variables:

 

J( 6, 1, Random Integer( 1, 6 ) );

I am not clear what you need when you say "from which a user indicates the number of combinations to be generated."

pawndreal_
Level I

Re: Combinations

Thanks for the reply! What i meant is that when a user indicated number of
combinations, say if i input 3 as my combinations, it returns 3 column
vectors of the random numbers generated.

Re: Combinations

I see. That need is easily handled by the second argument to the J() function.

 

J( 6, 3, Random Integer( 1, 6 ) );

You can use variables instead of constants, too.

 

r = 6;
c = 3;
J( r, c, Random Integer( 1, 6 ) );

 

おすすめの記事