I have two figures, which I need each appearing in a single column, in an IEEE two-column style paper filling a single page. How to accomplish this?
Problem: Text comes in-between from elsewhere and can't control where to place each figure!
The order I put them is sequential and no text in-between in code:
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\ifCLASSINFOpdf
\else
\fi
\usepackage{siunitx}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{array}
\usepackage{makecell, booktabs, multirow}
\usepackage{epstopdf}
\DeclareGraphicsExtensions{.eps}
\begin{document}
\begin{figure}[h]
\begin{center}
{\scalebox{0.75}{\includegraphics*{Fig4.pdf}}}\vspace{-0.1 cm}
\caption{flowchart 1 }
\label{fig:Fig_4}
\end{center}
\end{figure}
\begin{figure}[h]
\begin{center}
{\scalebox{0.75}{\includegraphics*{Fig5.pdf}}}\vspace{-0.1 cm}
\caption{flowchart 2}
\label{fig:Fig_5}
\end{center}
\end{figure}
\end{document}

\begin{figure}[tp]for the 1st fig. and\begin{figure}[t]for the 2nd. It is good to exploit[place]here. – Hans Oct 06 '15 at 03:51