Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、これを試してみると、数字はランダムにならず、6 つの乱数が生成され、それが繰り返されます。
Z <- array(sample(1:100, 6, replace=T), c(100,6))
何か案は?
あなたの質問では、必要な乱数の種類を指定していませんでしたが、配列を1から100までのランダムな整数で埋めたい場合は、次のようになります。 Z <- array(sample(1:100, 600, replace=T), c(100,6))
Z <- array(sample(1:100, 600, replace=T), c(100,6))
実際に 0 から 1 の間のランダムな描画が必要な場合は、次のようにします。 Z<-array(runif(600), c(100,6))
Z<-array(runif(600), c(100,6))
重要なことは、600 個の乱数を描画し、配列を使用してそれらを行列に入れる必要があるということです。