In MATLAB, you can use the randi
function to generate a random integer. randi
generates uniformly distributed random integers between a specified range.
Here is an example of how to use randi
to generate a random integer between 1 and 10:
main.m45 chars3 lines
In this example, randi([1, 10])
will generate a random integer between 1 and 10, inclusive. The value will be stored in the variable randomInt
, and then it will be displayed using the disp
function.
You can adjust the range [1, 10]
to fit your desired range.
Alternatively, if you want to generate an array of random integers, you can specify the size using the following syntax:
main.m57 chars3 lines
This will generate a row vector of 5 random integers between 1 and 10.
Remember to replace [1, 10]
with your desired range and [1, 5]
with your desired array size.
Note: If you want to generate random decimal numbers instead of integers, you can use the rand
function in MATLAB.
gistlibby LogSnag