I'm familiar with the closed-form solution of ordinary least squares which minimizes $\sum_{n=1}^N(y_n - \mathbf{\beta x_n})^2$ for scalar $y_n$. However, in my situation I am trying to fit some data to a vector output through a matrix transformation, so I am instead looking to minimize the norm of the difference for each sample:
$$\min_B\sum_{n=1}^N\|\mathbf{y_n}-B\mathbf{x_n}\|^2$$
where $\mathbf{y_n}$ is now a vector and the parameters are now a matrix $B$. I suspect I am just unfamiliar with the name for this as searches of "vector response OLS" and "matrix OLS" keep bringing me the compact matrix formulation of OLS rather than the problem above.