

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


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


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.


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.
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