Generate normal distributed random integer from 1-10 and use in simulink
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm new at Simulink and Matlab,
Trying to use the MATLAB action where I have a customer Entity, want to simulate the arrival rate of these customer's and needs to generate a random number from 1-10 normally distributed.
Tried to do it like this, but it seems wrong.
n = 1; % However many numbers you want.
dt = randi([1, 10], [1, n])
Any idea, to generate this random number , so I can assign dt to that?
matlab simulink
|
show 1 more comment
I'm new at Simulink and Matlab,
Trying to use the MATLAB action where I have a customer Entity, want to simulate the arrival rate of these customer's and needs to generate a random number from 1-10 normally distributed.
Tried to do it like this, but it seems wrong.
n = 1; % However many numbers you want.
dt = randi([1, 10], [1, n])
Any idea, to generate this random number , so I can assign dt to that?
matlab simulink
1
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.
– Nicky Mattsson
Nov 16 '18 at 11:55
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
I understand that it needs to pick randomly from the values1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval-inf
toinf
.
– Nicky Mattsson
Nov 16 '18 at 11:59
2
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
2
randi(11,[1 n])-1
generates n integers in the 0-10 range.10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range.randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson
– Brice
Nov 16 '18 at 13:15
|
show 1 more comment
I'm new at Simulink and Matlab,
Trying to use the MATLAB action where I have a customer Entity, want to simulate the arrival rate of these customer's and needs to generate a random number from 1-10 normally distributed.
Tried to do it like this, but it seems wrong.
n = 1; % However many numbers you want.
dt = randi([1, 10], [1, n])
Any idea, to generate this random number , so I can assign dt to that?
matlab simulink
I'm new at Simulink and Matlab,
Trying to use the MATLAB action where I have a customer Entity, want to simulate the arrival rate of these customer's and needs to generate a random number from 1-10 normally distributed.
Tried to do it like this, but it seems wrong.
n = 1; % However many numbers you want.
dt = randi([1, 10], [1, n])
Any idea, to generate this random number , so I can assign dt to that?
matlab simulink
matlab simulink
asked Nov 16 '18 at 11:49
RayRay
256
256
1
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.
– Nicky Mattsson
Nov 16 '18 at 11:55
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
I understand that it needs to pick randomly from the values1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval-inf
toinf
.
– Nicky Mattsson
Nov 16 '18 at 11:59
2
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
2
randi(11,[1 n])-1
generates n integers in the 0-10 range.10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range.randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson
– Brice
Nov 16 '18 at 13:15
|
show 1 more comment
1
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.
– Nicky Mattsson
Nov 16 '18 at 11:55
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
I understand that it needs to pick randomly from the values1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval-inf
toinf
.
– Nicky Mattsson
Nov 16 '18 at 11:59
2
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
2
randi(11,[1 n])-1
generates n integers in the 0-10 range.10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range.randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson
– Brice
Nov 16 '18 at 13:15
1
1
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits
[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.– Nicky Mattsson
Nov 16 '18 at 11:55
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits
[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.– Nicky Mattsson
Nov 16 '18 at 11:55
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
I understand that it needs to pick randomly from the values
1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval -inf
to inf
.– Nicky Mattsson
Nov 16 '18 at 11:59
I understand that it needs to pick randomly from the values
1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval -inf
to inf
.– Nicky Mattsson
Nov 16 '18 at 11:59
2
2
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
2
2
randi(11,[1 n])-1
generates n integers in the 0-10 range. 10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range. randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson– Brice
Nov 16 '18 at 13:15
randi(11,[1 n])-1
generates n integers in the 0-10 range. 10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range. randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson– Brice
Nov 16 '18 at 13:15
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337290%2fgenerate-normal-distributed-random-integer-from-1-10-and-use-in-simulink%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337290%2fgenerate-normal-distributed-random-integer-from-1-10-and-use-in-simulink%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Do you want a normal or a uniform random number? You write normal, which is not per se possible with your limits
[1,10]
as it spans the entire x-axis. If you meant uniform, that is exactly what you get with the command that you have written.– Nicky Mattsson
Nov 16 '18 at 11:55
normally distribution ;) so at every event, it picks a random from between 1-10
– Ray
Nov 16 '18 at 11:57
I understand that it needs to pick randomly from the values
1:10
, but this is NOT a normal distribution, a normal distribution generate values in the interval-inf
toinf
.– Nicky Mattsson
Nov 16 '18 at 11:59
2
Again, there is no such "normally distributed between 0 and 10 minutes". The normal distribution is unlimited. Either the exercise is wrong, or you interpreted it wrongly. My suggestion is to first fully understand which distribution you want and then figure out how to generate it, rather then the other way around. Should the exercise be wrong, then you would also understand why it is wrong.
– Nicky Mattsson
Nov 16 '18 at 12:05
2
randi(11,[1 n])-1
generates n integers in the 0-10 range.10*rand([1 n])
generates n uniformly distributed floats in the 0-10 range.randn([1 n])
generates 10 floats with a normal distribution (mean=0, std=1) which by definition are not bound to the 0-10 interval. The requirement is not clear as mentioned by @Nicky Mattsson– Brice
Nov 16 '18 at 13:15