필터 지우기
필터 지우기

Can Matlab give me a disturbance randomly from a% to b% of a number?

조회 수: 2 (최근 30일)
Ben Le
Ben Le 2017년 2월 18일
편집: Ben Le 2017년 2월 18일
Hello everyone,
Let say my number is 7, and I need to generate a randomly number from 5 to 400% of 7. Can Matlab give me the randomly numbers? Thank you in advance for your help!
Ben

채택된 답변

Matt J
Matt J 2017년 2월 18일
편집: Matt J 2017년 2월 18일
ub=4*7; %upper bound
lb=.05*7; %lower bound
num=(ub-lb)*rand+lb
  댓글 수: 2
John D'Errico
John D'Errico 2017년 2월 18일
Hmm. I interpret the lower limit differently from the question. You may be right though.
Ben Le
Ben Le 2017년 2월 18일
Thank you very much, Matt!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

John D'Errico
John D'Errico 2017년 2월 18일
Do you know how to generate uniform random numbers in an interval [x,y]? This is in the help for rand, so you should know, or be able to find out.
doc rand
Here, your limits are
[5,4*7]
since 4*7 is 400% of 7. Just read the help.
  댓글 수: 1
Ben Le
Ben Le 2017년 2월 18일
편집: Ben Le 2017년 2월 18일
John, Thanks for your suggestion. The doc rand doesn't help because it gives me a vector or a matrix. I need a single value to avoid conflicting with dimensions of other parameters in the function. Thanks again for the suggestion!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by