Creating matrix variables- arguments:
The CAT arguments dimensions are not reliable.
The Iterators can also be used for the values on the rows by using the colon operator; for illustration:
>> mat = [2:4; 3:5]
mat =
2 3 4
3 4 5
Different rows in the matrix can be specified by pressing the Enter key after each row rather than of typing a semicolon when entering into the matrix values; for illustration:
>> newmat = [2 6 88
33 5 2]
newmat =
2 6 88
33 5 2