How to store value of rand() function in a file?
Show older comments
I want to store the value of rand()(this function generate a number of value randomly) function in a file. Can anyone help please??
Accepted Answer
More Answers (2)
Chad Greene
on 7 Jan 2015
x = rand(5,1);
save example.mat 'x'
is simple and can be easily recalled with
load example
Alternatively, you may look into controlling random number generation with rng. By controlling the seed number you can consistently get the same "random" numbers every time you call rand.
Sean de Wolski
on 7 Jan 2015
Or:
matlab.io.saveVariablesToScript
If you want a runnable script.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!