![addplot3[surf]가 플롯할 수 없음](https://rvso.com/image/348753/addplot3%5Bsurf%5D%EA%B0%80%20%ED%94%8C%EB%A1%AF%ED%95%A0%20%EC%88%98%20%EC%97%86%EC%9D%8C%20.png)
나는 이것이 대부분의 사람들에게 기본적인 질문일 수 있다는 것을 알고 있지만 최근에 pgfplots를 사용하기 시작했고 전혀 경험이 없습니다.
다음 좌표와 코드를 사용하여 3D 표면을 플롯하려고 합니다.
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[colorbar,colormap/jet, xmin = -0.2,xmax = 1.2,xmajorgrids,
ymin= -0.2,ymax = 1.2,ymajorgrids,zmin = 0.0,
zmax =1.0,zmajorgrids,title=Resultierender Zustand]
\addplot3[surf] table {
0 0 0
0 0.125 0
0 0.25 0
0 0.375 0
0 0.5 0
0 0.625 0
0 0.75 0
0 0.875 0
0 1 0
0.125 0 0
0.125 0.125 0.0227636
0.125 0.25 0.0704405
0.125 0.375 0.0810631
0.125 0.5 0.0825012
0.125 0.625 0.0847161
0.125 0.75 0.059342
0.125 0.875 0.0115338
0.125 1 0
0.25 0 0
0.25 0.125 0.0704405
0.25 0.25 0.239427
0.25 0.375 0.293824
0.25 0.5 0.299262
0.25 0.625 0.297564
0.25 0.75 0.228341
0.25 0.875 0.059342
0.25 1 0
0.375 0 0
0.375 0.125 0.0810631
0.375 0.25 0.293824
0.375 0.375 0.373863
0.375 0.5 0.379686
0.375 0.625 0.376929
0.375 0.75 0.297564
0.375 0.875 0.0847161
0.375 1 0
0.5 0 0
0.5 0.125 0.0825012
0.5 0.25 0.299262
0.5 0.375 0.379686
0.5 0.5 0.383375
0.5 0.625 0.379686
0.5 0.75 0.299262
0.5 0.875 0.0825012
0.5 1 0
0.625 0 0
0.625 0.125 0.0847161
0.625 0.25 0.297564
0.625 0.375 0.376929
0.625 0.5 0.379686
0.625 0.625 0.373863
0.625 0.75 0.293824
0.625 0.875 0.0810631
0.625 1 0
0.75 0 0
0.75 0.125 0.059342
0.75 0.25 0.228341
0.75 0.375 0.297564
0.75 0.5 0.299262
0.75 0.625 0.293824
0.75 0.75 0.239427
0.75 0.875 0.0704405
0.75 1 0
0.875 0 0
0.875 0.125 0.0115338
0.875 0.25 0.059342
0.875 0.375 0.0847161
0.875 0.5 0.0825012
0.875 0.625 0.0810631
0.875 0.75 0.0704405
0.875 0.875 0.0227636
0.875 1 0
1 0 0
1 0.125 0
1 0.25 0
1 0.375 0
1 0.5 0
1 0.625 0
1 0.75 0
1 0.875 0
1 1 0
};
\end{axis}
\end{tikzpicture}
\end{document}
그리고 분명히 잘못된 것입니다. 누구든지 나를 도와줄 수 있나요?
미리 감사드립니다.