I want to sum matrix $\mathbf{A}$ ($n \times d$) and a matrix composed of $n$ copies of vector $\mathbf{b}$ ($d \times 1$) as follows:
$\mathbf{A}+\begin{bmatrix}\mathbf{b^T \\ \vdots \\ b^T}\end{bmatrix}_{n \times d}$
In MATLAB or Julia this would be equivalent to:
A .+ b' Is there any succinct mathematical notation for this operation, or is the notation I used here the most appropriate?
Thanks in advance.