I'm trying to plot the following graph using pgfplots:

This plot was generated with matlab.
I can easily plot the two curves with pgfplots but I have no clue how to add the vertical line with the 0.3dB marker on it. Maybe there is a possibility to extract the (interpolated) values for x (SNR) of both plots at y=10^-1. It should be mentioned that only the y values for 20, 22, 24, 26, 28, 30 and 32 dB are available.
This is my the current TeX Code (the plot data does not exactly fit to the matlab pic, but the idea is the same):
\documentclass[a4paper, ngerman]{scrreprt}
\usepackage{color}
% predefined colors
\definecolor{color1}{rgb}{0.44706,0.44706,0.44706}%
\definecolor{color2}{rgb}{0.09412,0.34902,0.66275}%
\definecolor{color3}{rgb}{0.92941,0.17647,0.18039}%
\definecolor{color4}{rgb}{0.00000,0.54902,0.27843}%
% include pgfplots
\usepackage{pgfplots}
\usepackage{pgfplotstable}
% custom settings
\pgfplotsset{compat=1.3}
\pgfplotsset{every axis/.append style={line width=1pt}} % line widths
\pgfplotsset{ % customized size (x1.3)
mysize/.style={
/pgfplots/width=312pt,
/pgfplots/height=269pt,
/pgfplots/max space between ticks=35}
}
\pgfplotsset{ % fer plot config
ferplotcfg/.style={
/pgfplots/xmin = 20,
/pgfplots/xmax = 32,
/pgfplots/ymin = 10e-3,
/pgfplots/ymax = 10e-1,
/pgfplots/grid = both,
minor grid style = {dashed},
major grid style = {dashed}}
}
\pgfplotsset{ % reference curve cfg
line_ref/.style={
color1,
/tikz/smooth,
/tikz/mark=none,
/tikz/style={dashed}}
}
\pgfplotsset{ % reference curve cfg
line_1/.style={
color2,
/tikz/smooth,
/tikz/mark=o}
}
\begin{document}
\centering
\begin{tikzpicture}
\begin{axis} [
title = FER Performance,
legend entries = {Reference, Fixed Point},
xlabel = {SNR (dB)}, ylabel = {FER},
ferplotcfg, mysize, ymode = log,
]
\addplot[line_ref] table[x=snr, y=reference, col sep=comma, row sep=crcr] {
snr,matlab_full_sim_fxp,reference\\
20,0.93682,0.92946\\
22,0.76335,0.73643\\
24,0.39312,0.3622\\
26,0.11584,0.10718\\
28,0.036743,0.029785\\
30,0.012695,0.010864\\
32,0.0064697,0.0039063\\};
\addplot[line_1] table[x=snr, y=matlab_full_sim_fxp, col sep=comma, row sep=crcr] {
snr,matlab_full_sim_fxp,reference\\
20,0.93682,0.92946\\
22,0.76335,0.73643\\
24,0.39312,0.3622\\
26,0.11584,0.10718\\
28,0.036743,0.029785\\
30,0.012695,0.010864\\
32,0.0064697,0.0039063\\};
\end{axis}
\end{tikzpicture}
\end{document}
