von Bigga » Do 25. Apr 2019, 14:41
			
			
			Ja wunderbar, genau so etwas hatte ich gesucht. Vielen Dank 
Ich habe hieraus folgendes gebastelt:
\begin{tikzpicture}[scale=1.0]
        \begin{axis}[
            xlabel = {$U_B$ in $\si{\volt}$},
	        ylabel = {$I_A$},
	        axis x line=bottom,
            axis y line=left,
            xtick distance=2,
            ytick distance=50,
            xmin=0,
            xmax=20,
	        grid=major
    	   ]
            \addplot+ [smooth, mark=none, domain=0:25] 
            coordinates {
                (0,0)
                (6.1,100) (7.4, 20) 
                (11,220) (13.35, 40) 
                (15.9,350) (17.65, 80)
            };
\end{axis}
\end{tikzpicture}
Sieht aus wie es soll 

 
			
			
							Ja wunderbar, genau so etwas hatte ich gesucht. Vielen Dank :)
Ich habe hieraus folgendes gebastelt:
[code]
\begin{tikzpicture}[scale=1.0]
        \begin{axis}[
            xlabel = {$U_B$ in $\si{\volt}$},
	        ylabel = {$I_A$},
	        axis x line=bottom,
            axis y line=left,
            xtick distance=2,
            ytick distance=50,
            xmin=0,
            xmax=20,
	        grid=major
    	   ]
            \addplot+ [smooth, mark=none, domain=0:25] 
            coordinates {
                (0,0)
                (6.1,100) (7.4, 20) 
                (11,220) (13.35, 40) 
                (15.9,350) (17.65, 80)
            };
\end{axis}
\end{tikzpicture}
[/code]
Sieht aus wie es soll :)