Answers for "octave add column to matrix"

0

octave add column to matrix

a = [1; 5; 4]
b = [2 5; 5 2; 7 6]
c = [a b]
	c =	 1   2   5
   		 5   5   2
   		 4   7   6
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language