I use the + operator in my r2017a version to sum a line vector and a row vector to give me an array.
A = [1 2]
B = [1;2]
C = A + B = [2 3; 3 4]
I tried to run my code on an other computer with the r2016a version but it doesn't work.
How can I simply do this command?