Using a MATLAB function-block in Simulink to generate random numbers
이전 댓글 표시
Hello!
I've tried to both google this question and search among the questions and answers here, but I've found no definitve answer to my question so I'm making a new one. Hopefully it won't be too much trouble!
I'm creating a simulation in Simulink where I have a "MATLAB function"-block that is supposed to take input from another source (we can consider this source a "Constant"-block) and then apply a random number that is generated from the MATLAB function-block on the input.
My problem is that I get the exact same randomized numbers every single time I run the Simulink simulation. And I was wondering if someone could help me solve my problem?
Here is the code (not all of it, but all of it that matters):
% function MC_output = randomizer(Stat_input)
%#codegen
minrand = 0.1;
maxrand = 1.9;
points = 10;
rand_numbers = Stat_input*minrand + rand(1, points).*(maxrand-minrand);
MC_output = mean(rand_numbers);
end
I've read about this solution, but it doesn't work for me
coder.extrinsic('rng');
rng('shuffle');
In different ways but with no success. Some help would be greatly appriciated! Oh, and btw, I'm using MATLAB R2012a.
Thanks in advance, Niklas
답변 (1개)
A Jenkins
2014년 6월 25일
Add also:
coder.extrinsic('rand')
to the beginning of your code.
댓글 수: 2
Niklas
2014년 6월 25일
A Jenkins
2014년 6월 25일
function MC_output = fcn(Stat_input)
coder.extrinsic('rng');
coder.extrinsic('rand')
rng('shuffle');
minrand = 0.1;
maxrand = 1.9;
points = 10;
z=zeros(1, points);
z=rand(1, points);
rand_numbers = Stat_input*minrand + z.*(maxrand-minrand);
MC_output = mean(rand_numbers);
end
카테고리
도움말 센터 및 File Exchange에서 Sources에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!