Feeds
Discussion
Mathematically it is not possible to add a column vector with a row vector . However, when i tried to code this logic in Matlab it creates a square matrices of both the vectors and adds them .
a = [ 1 2 3 ] a = 1 2 3 b = [ 3; 5; 8] b = 3 5 8 x = a + b x = 4 5 6 6 ...
4개월 전 | 0