Right now my table is at bottom and caption is on the bottom too
\begin{minipage}[b]{0.6\textwidth}
\centering
\includegraphics[width=1\linewidth]{../matlab/SCEP_mcep_compare/graphs/diff_qos_types_thoughput}
\captionof{figure}{A table beside a figure}\label{diff_qos_types_thoughput}
\end{minipage}
\hfill
\begin{minipage}[b][][c]{0.4\textwidth}
\centering
\renewcommand{\arraystretch}{1}
\begin{tabular}{| c | c | c | c |}
\hline
$\lambda$ & Qos2 & Qos1 & Qos0 \\ \hline
10 & 10 & 10 & 10 \\
50 & 49.50 & 42.00 & 22.54 \\
200 & 85.00 & 42.00 & 91.10 \\
500 & 86.00 & 42.00 & 233.11 \\
1000 & 88.00 & 42.00 & 233.11 \\
1500 & 87 & 42.00 & 707.06 \\
2000 & 86.00 & 42.00 & 947.90 \\
3000 & 82.00 & 42.00 & 961.64 \\
\hline
\end{tabular}
\captionof{table}{Values for \cref{diff_qos_types_thoughput} }
\end{minipage}f{table}{Values for \cref{diff_qos_types_thoughput} }
\end{minipage}
For achieving the table contents in the center I tried to use \begin{minipage}[b][][c]{0.4\textwidth} as explained here, but it resulted in same output.
How can I put my table in the center and while table caption is at the bottom?


diff_qos_types_thoughputearlier as well. You are absolutely right, I will provide the complete document in future. Much respect for your efforts. – Amarjit Dhillon Jun 15 '18 at 22:15hyperrefpackage, it should be loaded beforecleverefpackage and\cref{...}used in in caption had to be protected. for example\captionof{table}{Values for \protect\cref{fig:diff_qos_types_thoughput} }. – Zarko Jun 15 '18 at 22:19