This is my first time trying to import plots created by MATLAB into LaTeX and it's not turning out very nicely. I have saved my MATLAB plot as a .png file here and an .eps file here. Using the .eps file, I have the following code:
\documentclass[twoside, a4paper, 12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{center}
\includegraphics[scale=0.6]{graph2.eps}
\end{center}
\end{document}
which turns out to look like: (half the image is missing)

So then I changed the scale to 0.4:
\includegraphics[scale=0.4]{graph2.eps}
which produces the output:

However now the image is way too small to be eligible (and it doesn't feel like it's centered properly). Does anyone have a good solution for this? How can I get the image to look "good" when imported into LaTeX? Thanks.
EDIT:
I have saved the three plots separately:
The first graph is called g1 and can be found here
g2 can be found here
and g3 can be found here
How can I combine them into one figure using the tabular environment? Could someone provide a template code?
matlab2tikzand it works perfectly. – Claudio Fiandrino Apr 12 '14 at 08:19width=option instead ofscalewhen importing graphics. This scales graphics to desired sizes. Eg,\includegraphics[width=\textwidth]{graph2.eps}. – Igor Kotelnikov Apr 12 '14 at 09:29