Make Vertical and horizontal arrays in MATLABHarshal SrivastavaApr 4, 20211 min readOpen your command window.2. For horizontal array, type, say variable name "x"x= [ 1 2 3 4]3. For vertical arrays, type, say variable name "y"y = [1;2;3;4]
Comments