Using the following code
\documentclass{beamer}
\beamertemplatenavigationsymbolsempty
\usepackage{verbatim}
\usepackage{tikz}
\usetikzlibrary{calc, fit, matrix}
\begin{document}
%begin matrix autofit width
\tikzset{matrix rows/.initial=1,matrix cols/.initial=1,matrix name/.initial=x,
vline/.style={/utils/exec=\foreach \XX in {1,...,\pgfkeysvalueof{/tikz/matrix rows}}
{\ifnum\XX=1
\xdef\MatLstA{(\pgfkeysvalueof{/tikz/matrix name}-\XX-#1)}
\xdef\MatLstB{(\pgfkeysvalueof{/tikz/matrix name}-\XX-\the\numexpr1+#1\relax)}
\else
\xdef\MatLstA{\MatLstA (\pgfkeysvalueof{/tikz/matrix name}-\XX-#1)}
\xdef\MatLstB{\MatLstB (\pgfkeysvalueof{/tikz/matrix name}-\XX-\the\numexpr1+#1\relax)}
\fi},
insert path={node[fit=\MatLstA,inner sep=0pt] (fitA) {}
node[fit=\MatLstB,inner sep=0pt] (fitB) {} ($(fitA.east)!0.5!(fitB.west)$) coordinate (aux)
(\pgfkeysvalueof{/tikz/matrix name}.north-|aux) -- (\pgfkeysvalueof{/tikz/matrix name}.south-|aux)}},
hline/.style={/utils/exec=\foreach \XX in {1,...,\pgfkeysvalueof{/tikz/matrix cols}}
{\ifnum\XX=1
\xdef\MatLstA{(\pgfkeysvalueof{/tikz/matrix name}-#1-\XX)}
\xdef\MatLstB{(\pgfkeysvalueof{/tikz/matrix name}-\the\numexpr1+#1\relax-\XX)}
\else
\xdef\MatLstA{\MatLstA (\pgfkeysvalueof{/tikz/matrix name}-#1-\XX)}
\xdef\MatLstB{\MatLstB (\pgfkeysvalueof{/tikz/matrix name}-\the\numexpr1+#1\relax-\XX)}
\fi},
insert path={node[fit=\MatLstA,inner sep=0pt] (fitA) {}
node[fit=\MatLstB,inner sep=0pt] (fitB) {} ($(fitA.south)!0.5!(fitB.north)$) coordinate (aux)
(\pgfkeysvalueof{/tikz/matrix name}.west|-aux) -- (\pgfkeysvalueof{/tikz/matrix name}.east|-aux)}},
full matrix grid/.style={
vline/.list={1,...,\the\numexpr\pgfkeysvalueof{/tikz/matrix cols}-1},
hline/.list={1,...,\the\numexpr\pgfkeysvalueof{/tikz/matrix rows}-1},
insert path={(\pgfkeysvalueof{/tikz/matrix name}.south west) rectangle (\pgfkeysvalueof{/tikz/matrix name}.north east)}}}
%end matrix autofit width
\begin{frame}[t,fragile]
\frametitle{matrix summation}
\begin{tikzpicture}
\matrix (x) [matrix of nodes, row sep=10pt, column sep=10pt] {%
a & v & w & x & y & z & Total\\
b & 18.6 & 12.9 & 20.3 & 13.7 & 21.45 & \\
c & 26.1 & 15.7 & 14.0 & 17.8 & 33.8 & \\
d & 12.9 & 29.8 & 18.3 & 14.2 & 20.8 & \\
Total & & & & & & \\};
\end{tikzpicture}
\end{frame}
\begin{frame}[t,fragile]
\frametitle{table summation}
\begin{tabular}{|c|c|c|c|c|c|c|c|}
\hline
a & v & w & x & y & z & Total\\
\hline
b & 18.6 & 12.9 & 20.3 & 13.7 & 21.45 & \\
\hline
c & 26.1 & 15.7 & 14.0 & 17.8 & 33.8 & \\
\hline
d & 12.9 & 29.8 & 18.3 & 14.2 & 20.8 & \\
\hline
Total & & & & & & \\
\hline
\end{tabular}
\end{frame}
\end{document}
from the answer to this question
Is it possible to display the summation of matrix elements / table cells in the last column/row


