Ich möchte, dass die positive Zählrichtung der x-Achse schräg nach vorne geht. Öffne in Overleaf
\documentclass[varwidth, margin=2.5pt]{standalone} \usepackage[ngerman]{babel} \usepackage{pgfplots} \pgfplotsset{compat=1.8} % \pgfplotsset{compat=newest} \begin{document} \begin{tikzpicture} \begin{axis}[ title={Betragsfl\"ache}, outer axis line style={ultra thin, lightgray}, inner axis line style={ultra thin, lightgray}, % hat Effekt? zmax = 19, xmajorgrids, ymajorgrids, zmajorgrids, xlabel={$x$}, ylabel={$y$}, zlabel={$z$}, ztick={0,4,...,19}, xticklabels=\empty, yticklabels=\empty, %zticklabels=\empty, ] \addplot3[mesh, draw=black, domain=-4:4, very thin, ] {x^2}; \end{axis} \end{tikzpicture} \end{document} |
Du kannst mit der Öffne in Overleaf
view = {azimuth}{elevation}, default wäre view = {25}{30}, gedreht z.B. Öffne in Overleaf
view = {-25}{30}, beantwortet 18 Feb '17, 20:51 stefan ♦♦ Ja nicht schlecht, wenn ich nur wüsste, was ich da einstellen muss. Ausprobieren gelingt mir irgendwie nicht.
(19 Feb '17, 11:54)
cis
1
@cis Dann drehe in kleinen Schritten, und immer nur entweder Azimuth (horizontal im Kreis) oder Elevation (aufwärts kippen) und sieh, wie es sich verändert. Ggf. mit kleinerer samples-Zahl in x und y, damit es schneller geht bei mehrfachen Tests.
(19 Feb '17, 12:43)
stefan ♦♦
OK..............
(19 Feb '17, 18:28)
cis
|