How to create a 1400 × 2 matrix of normally distributed random multiples of 10?

1 Ansicht (letzte 30 Tage)
I'm trying to create a 1400 × 2 matrix of normally distributed random multiples of 10 (i.e. 200, 210,
220, etc.) with a mean of 500 and a standard deviation of 100, using randn, round , and
other operations. So far I have:
mu = 500;
stdev = 100;
s = round([(randn(1400,2) * stdev) + mu])
..but I have trouble with the "multiples of 10".. how do I implement the command to only display random (!!) multiples of 10? Thank you.
  3 Kommentare
Matt J
Matt J am 2 Okt. 2022
Bearbeitet: Matt J am 2 Okt. 2022
What is asked makes no sense. "Normally distributed" implicitly means that s can take on any value.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Okt. 2022
You can round(x, -1) to round to the nearest multiple of 10.
However, Normal Distribution is inherently a continuous distribution, and it is contradictory to have "normally distributed" quantized values (other than quantized due to the limits of precision of the calculation method)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by