Which command will create a column vector with the values 7, 8, and 9?
c = [7: 8: 9]
c = [7 8 9]
c = [7,8,9]
c = [7; 8; 9]