He matriz y la necesidad de restar otro elemento de la matriz por el elemento de cada fila. Algo como esto:
$$ \begin{pmatrix} x_{1} & x_{2}\\ x_{3} & x_{4}\\ \vdots & \vdots\\ x_{n-1} & x_{n}\\ \end{pmatrix} - \begin{pmatrix} y_{1} & y_{2}\\ \end{pmatrix} $$
Así que el resultado final debería ser algo como:
$$ \begin{pmatrix} x_{1} - y_{1} & x_{2} - y_{2}\\ x_{3} - y_{1} & x_{4} - y_{2}\\ \vdots & \vdots\\ x_{n-1} - y_{1} & x_{n} - y_{2}\\ \end{pmatrix} $$
Cómo hacer esto? Cómo hacer esto en la Octava, Matlab?
Lo siento por noob la pregunta. También sería muy bueno si usted pinta de mí donde leer sobre esto.