Cómo colocar una flecha encima y a la derecha de una matriz

Cómo colocar una flecha encima y a la derecha de una matriz

Estoy intentando crear una matriz que se muestra a continuación.

ingrese la descripción de la imagen aquí

pero quiero elflecha izquierdaestar en ellado derecho de la matriz

porque quiero tener el nombre de la matriz en el lado izquierdo.

Esto es lo que tengo:

\[
M =\begin{bmatrix} 
f(1,1) & f(1,2) & \dots \\
f(2,1) & f(2,2) & \dots  \\
\vdots & \vdots & \vdots 
\end{bmatrix}
\]

No estoy seguro de cómo proceder después de eso. ¿Alguien tiene alguna sugerencia?

Respuesta1

Modifiqué ligeramente la solución de Marmot para evitar su uso tikzmark.

También lo he usado Trianglecomo puntas de flecha y otros pequeños cambios.

Mi solución también funciona si no ha actualizado su distribución.

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary[arrows.meta]

\begin{document}
\[
M =\tikz[remember picture, baseline=(mat.center)]{\node[inner sep=0](mat){$\begin{bmatrix} 
f(1,1) & f(1,2) & \dots \\
f(2,1) & f(2,2) & \dots  \\
f(3,1) & f(3,2) & \dots  \\
\vdots & \vdots & \ddots \\
 & &  \\
\end{bmatrix}$};}
\begin{tikzpicture}[overlay,remember picture,
>=Triangle]
\draw[blue,thick,->] node[anchor=south west] (nn1) at (mat.north west)
{$n$ columns} (nn1.east) -- (nn1-|mat.north east) 
node[midway,above,black]{$i$ changes};
\draw[red,thick,->] node[anchor=north west,align=center, inner xsep=0pt] (nn2) at 
(mat.north east)
{$m$\\ rows} (nn2.south) -- (nn2.south|-mat.south) 
node[midway,above,black,rotate=-90]{$j$ changes};
\end{tikzpicture}
\]
\end{document}

ingrese la descripción de la imagen aquí

Respuesta2

Con tikzmarkeso es sencillo.

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\[
M =\hspace*{1.5cm}\tikzmarknode{mat}{\begin{bmatrix} 
f(1,1) & f(1,2) & \dots \\
f(2,1) & f(2,2) & \dots  \\
f(3,1) & f(3,2) & \dots  \\
\vdots & \vdots & \ddots \\
 & &  \\
\end{bmatrix}}
\begin{tikzpicture}[overlay,remember picture]
\draw[blue,thick,-latex] node[anchor=south west] (nn1) at (mat.north west)
{$n$ columns} (nn1.east) -- (nn1-|mat.north east) 
node[midway,above,black]{$i$ changes};
\draw[red,thick,-latex] node[anchor=north east,align=center] (nn2) at (mat.north west)
{$m$\\ rows} (nn2.south) -- (nn2.south|-mat.south west) 
node[midway,above,black,rotate=90]{$j$ changes};
\end{tikzpicture}
\]
\end{document}

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\begin{document}
\[
M =\tikzmarknode{mat}{\begin{bmatrix} 
f(1,1) & f(1,2) & \dots \\
f(2,1) & f(2,2) & \dots  \\
f(3,1) & f(3,2) & \dots  \\
\vdots & \vdots & \ddots \\
 & &  \\
\end{bmatrix}}
\begin{tikzpicture}[overlay,remember picture]
\draw[blue,thick,-latex] node[anchor=south west] (nn1) at (mat.north west)
{$n$ columns} (nn1.east) -- (nn1-|mat.north east) 
node[midway,above,black]{$i$ changes};
\draw[red,thick,-latex] node[anchor=north west,align=center] (nn2) at 
(mat.north east)
{$m$\\ rows} (nn2.south) -- (nn2.south|-mat.south) 
node[midway,above,black,rotate=90]{$j$ changes};
\end{tikzpicture}
\]
\end{document}

ingrese la descripción de la imagen aquí

información relacionada