Creating Matrix between two values

How can I creating 2x6 matrix using matrix operations? Elements of the matrix will be random numbers between 10 and 90.

Answers (1)

If I understood correctly, you can use the function randi to generate a matrix of integers for any specified size.
randi([10 90],2,6)

2 Comments

Thx:) It worked.
Please accept the answer

Sign in to comment.

Categories

Products

Release

R2018a

Asked:

on 28 Dec 2019

Commented:

on 30 Dec 2019

Community Treasure Hunt

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

Start Hunting!