I have a matrix A of size m X n and vector V of size m X 1
A = [1 2 3
4 5 6
8 9 10]
V = [1
2
3]
I want to compute A + V i.e., add the vector to every column of A
A = [2 3 4
6 7 8
11 12 13]
I have been reading through einsum notation, and also found similar questions answered for Scala, and Matlab. But, is it possible to define this operation in einsum notation?