Funktion lässt sich nicht plotten
Ich versuche diese Funktion in ein Graph einzubinden. Allerdings gelingt es mir nicht mal, die Funktion ohne alles zu generieren:
    \documentclass{scrartcl}
    \usepackage{amsmath}
    \usepackage[normalem]{ulem} 
    \usepackage{tikz} 
    \usepackage{pgfplots}
    \pgfplotsset{compat=newest}
    \begin{document}
    
    \begin{tikzpicture}
            \begin{axis}[grid=major,ymax=2500,xmax=2500]
              \addplot[no markers, blue, restrict y to domain=0:1714, samples=30000] { 2412 - 2.795e-10*(x^4)};
            \end{axis}
    \end{tikzpicture}
    
    \end{document}
Kann es sein, dass es mit der absurd kleinen Zahl 2.795e-10 zu tun hat? Wie kann ich die Funktion dennoch plotten?
plotten? **-> funktioniert! Siehe unten**
Neue Funktion, neues Pech: "Dimension too large" **-> funktioniert nicht.**
    \documentclass{scrartcl}
    \usepackage{amsmath}
    \usepackage[normalem]{ulem} 
    \usepackage{tikz} 
    \usepackage{pgfplots}
    \pgfplotsset{compat=newest}
    \begin{document}
    \begin{tikzpicture}
            \begin{axis}[grid=major,ymax=10000,xmax=10000,xmin=0,ymin=0]
              \addplot[no markers, blue, domain=0:10000, samples=10, % you can make it larger 
              %restrict y to domain=0:1714,% but this filter the results anyway
              samples=300 
              ] { 93231-3.552e-10*x^5};
            \end{axis}
    \end{tikzpicture}
    
    
    \end{document}
**EDIT GnuPLOT**
GnuPLOT** läuft nicht. **-> funktioniert nicht.**
    \documentclass{scrartcl}
    \usepackage{amsmath}
    \usepackage[normalem]{ulem} 
    \usepackage{tikz} 
    \usepackage{pgfplots}
    \pgfplotsset{compat=newest}
    \begin{document}
    
    
    \begin{tikzpicture}
            \begin{axis}[grid=major,ymax=2450,xmax=2500]
              \addplot[no markers, blue,restrict y to domain=0:1714, 
                samples=30000] gnuplot [domain=0:2500] { 2412 - 2.795e-10*(x^4)};
            \end{axis}
    \end{tikzpicture}
    
    
    \end{document}
Läuft nicht:
    ! Package pgfplots Error: Sorry, the gnuplot-result file 'MWE2funktion.pgf-plot
    .table' could not be found. Maybe you need to enable the shell-escape feature? 
Shell-escape ist aber drin:
![alt text][1]
Und GNUplot befindet sich im Pfad:
![alt text][2]
  [1]: http://texwelt.de/wissen/upfiles/shellescp.PNG
  [2]: http://texwelt.de/wissen/upfiles/gnu.PNGhttp://texwelt.de/wissen/upfiles/gnu_1.PNG