I have the matrix equation $$ \boldsymbol{\Phi}\boldsymbol{w}=\boldsymbol{y} $$ where $\boldsymbol{y}$ has size $[v\times d]$, $\boldsymbol{\Phi}$ has size $[v\times c]$ and $\boldsymbol{w}$ has size $[c\times d]$. I am trying to compute $\frac{\partial \boldsymbol{y}}{\partial \boldsymbol{w}}$. It is given in the problem statement that $\frac{\partial \boldsymbol{y}}{\partial \boldsymbol{w}}$ has size $[[v\times d]\times[c\times d]]$. This is where I get confused. I understand that a vector $\mathbf{z}$'s derivative w.r.t a vector $\mathbf{x}$ has the form
$$\frac{\partial \mathbf{z}}{\partial \mathbf{x}}=\left[\begin{array}{cccc}\frac{\partial z_{1}}{\partial x_{1}} & \frac{\partial z_{1}}{\partial x_{2}} & \cdots & \frac{\partial z_{1}}{\partial x_{n}} \\ \frac{\partial z_{2}}{\partial x_{1}} & \frac{\partial z_{2}}{\partial x_{2}} & \cdots & \frac{\partial z_{2}}{\partial x_{n}} \\ \vdots & \vdots & \ddots & \vdots \\ \frac{\partial z_{m}}{\partial x_{1}} & \frac{\partial z_{m}}{\partial x_{2}} & \cdots & \frac{\partial z_{m}}{\partial x_{n}}\end{array}\right].$$
If my matrices where vectors this would have made sense to me. But I'm confused as two how to proceed to compute $\frac{\partial \boldsymbol{y}}{\partial \boldsymbol{w}}$. Any suggestions or pointing me to a similar example would be appreciated.