I am trying to create a subfigure in LaTeX similar to this image:

I want to have a figure which has two columns. The left column contains one image and the right columns has two images. In fact, the right column is divided into two rows and the sum of the heights of the two images in the right column is equal to the height of the image in the left column. Is there a way to create such a figure in LaTeX?
I have been trying to adjust different versions of the following code but no success.
\begin{figure}
\centering
\subfigure
[]
{\label{fig:figA}}
\includegraphics[width=0.33\textwidth]{figA}
\hspace{0.005\textwidth}
\subfigure
[]
{\label{fig:figB}}
\includegraphics[width=0.33\textwidth]{figB}
\hspace{0.005\textwidth}
\subfigure
[]
{\label{fig:figC}}
\includegraphics[width=0.33\textwidth]{figC}
\caption{my caption. (a) is .... (b) is .... (c) is ....}
\label{fig:Test}
\end{figure}
Thanks, Ahmad

subfigurepackage? That is actually deprecated,subfigorsubcaptionis recommended instead. – Torbjørn T. Dec 22 '12 at 22:03