I am trying to get this to work in Latex, this is the output I am looking for:
This is the code I have so far, but I'm not getting what I want:
\documentclass{article}
\usepackage{amsmath,mathrsfs}
\usepackage[usenames, dvipsnames,svgnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{intersections, decorations.pathreplacing,shapes,shapes.geometric,hobby,patterns,babel,matrix,calc}
\DeclareMathOperator{\Mat}{Mat}
\begin{document}
\begin{tikzpicture}[
decoration = {
brace,amplitude=5pt},
baseline = (current bounding box.west),
strip/.style = {
draw=MediumPurple,%color
line width=1.1em, opacity=0.4,
line cap=round ,% only if you like them ...
},
stripp/.style = {
draw=LightSkyBlue,%color
line width=1.8em, opacity=0.4,
line cap=round ,% only if you like them ...
},
]
\matrix (mtrxx) [matrix of math nodes,left delimiter=(,right delimiter=),
column sep=.5em,
nodes={text height=2ex,text width=1.5ex}]
{
1 & 2 \\
3 & 4 \\
5 & 6 \\
};
\begin{scope}[xshift = 6cm]
\matrix (mtrxz) [matrix of math nodes,left delimiter=(,right delimiter=),
column sep=.5em,
nodes={text height=2ex,text width=1.5ex}]
{
-1 & 2 & 0 & 3 \\
1 & 0 & 4 & -1 \\
};
\end{scope}
\begin{scope}[yshift=-2cm]
\matrix {mtrxi} [matrix of math nodes,left delimiter=(,right delimiter=),
column sep=.5em,
nodes={text height=2ex,text width=1.5ex}]
{
$3 \times 2$ & & & & & & & & & $2 \times 4$ \\
};
\end{scope}
\node[color=black] at ([shift={(-12mm,-3mm)}]mtrxx-2-1.north) {$A =$};
\node[color=black] at ([shift={(-12mm,0mm)}]mtrxz-2-1.north) {$B =$};
\end{tikzpicture} \\
\end{document}
Any help would be greatly appreciated.

