Da die Wellenlänge
\lambda = \frac{c}{f}c = Lichtgeschwindigkeit = 299792458 m/s
Ich habe im Anhang ein Beispiel eingefügt.
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title=Umrechnung von Frequenz in Wellenlänge und umgekehrt,
width=0.9\textwidth,
enlargelimits=false,
xlabel={Frequenz $f$ [\unit{\MHz}]},
xmode=log,
xmin=1e-1, xmax=1e3,
ylabel={Wellenlänge $\lambda$ [\unit{\m}]},
ymode=log,
ymin=1e-1, ymax=1e4,
grid=both
]
\end{axis}
\end{tikzpicture}
\end{document}
