MATLAB: 6,8 Matrix

MATLABmatrices

The problem I'm having is that for an assignment the question was " A matrix with 6 rows and 8 columns of integers between 1 and 1000. ". My answer to that is below but don't know if thats correct or not or if its just me having a moment.
a = randi([1 1000],6,8)

Best Answer

Your way seems about right.