0
Random No. Generator Code in ScIlab and its visualization in graph by help of code

Kindly help me in scilab coding for random no. generation and its visualization in graph with the help of scilab coding


Scilab 19-05-20, 8:01 p.m. debidatta
0

Please explore the rand() command in scilab. You may also want to take a look at grand(). Explore plot() command as well.

28-05-20, 10:41 a.m. rupakrokade

Sir can i have the detail code , as sir i am trying but not getting the result. Kindly please help


28-05-20, 10:59 a.m. debidatta

Login to add comment


0

Copy paste your code here and we can try to fix it.

28-05-20, 11:37 a.m. rupakrokade


0
Use the rand function to draw the values from a uniform distribution in the open interval, (50,100). a = 50; b = 100; r = (b-a). *rand(1000,1) + a; Verify the values in r are within the specified range.
19-11-22, 5:02 p.m. rixar38165


0
Draw numbers from a uniform distribution in the open graph generator interval using the rand function (50,100). a = 50; b = 100; r = (b-a) (b-a). *rand(1000,1) + a; Check to see if the values in r fall inside the allowed range.
19-11-22, 11:56 p.m. rixar38165


Log-in to answer to this question.