Mal was anderes als Kochbücher
ich habe Messwerte die ich in einem 3D Scatterplot darstellen möchte.
\documentclass{article}
\usepackage{graphicx,pgfplots,tikz,tikz-3dplot}
\begin{document}
\section{IScatterPlot}
\begin{tikzpicture}
\begin{axis}[
xmin=0,xmax=3,
ymin=0,ymax=3,
zmin=0, zmax=3,
]
\addplot3[scatter, only marks] table[
x=x,y=y,z=z,
]
{
x y z r
1 2 1 1.5
2 1 1 0.1
1 1 1 0.1
2 2 1 0.1
1 2 2 0.1
2 1 2 0.1
1 1 2 0.1
2 2 2 0.1
};
\end{axis}
\end{tikzpicture}
\end{document}
//Huebi


