*Creating a One-Dimensional Array (Row / Column Vector) Exercise
Row vector matrix
>> F=[1 2 3 4 5 6]
F =
1 2 3 4 5 6
>> H=F'
H =
1
2
3
4
5
6
>> G=F(:)
G =
1
2
3
4
5
6
>> I=31:2:75
I =
Columns 1 through 15
31 33 35 37 39 41 43 45 47 49 51 53 55 57 59
Columns 16 through 23
61 63 65 67 69 71 73 75
>> I=32:2:75
I =
Columns 1 through 15
32 34 36 38 40 42 44 46 48 50 52 54 56 58 60
Columns 16 through 22
62 64 66 68 70 72 74