
xy 평면에 그림을 그리기 위해 tikz를 사용하고 있습니다. 그러나 y축 모드를 로그 배율로 변경하면 "치수가 너무 큽니다"라는 오류가 발생합니다. 이 웹사이트에서 검색했는데 제가 하지 않은 다른 작업에서도 동일한 오류가 발생했습니다. 도움이 필요하세요?
\begin{tikzpicture}
\begin{axis}[%
width=7.607cm,
height=7cm,
at={(0cm,0cm)},
scale only axis,
xmin=10,
xmax=40,
xlabel={EbNo (dB)},
xmajorgrids,
ymode=log,
ymin=0.99,
ymax=1,
yminorticks=true,
ylabel={Probability},
ymajorgrids,
yminorgrids,
axis background/.style={fill=white},
legend style={at={(0.688,0.157)},anchor=south west,legend cell align=left,align=left,draw=white!15!black,font=\scriptsize}
]
\addplot [color=blue,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
40 0.998700013\\
38 0.99866668\\
36 0.99866668\\
34 0.998633347\\
32 0.998633347\\
30 0.998566681\\
28 0.998466682\\
26 0.998433349\\
24 0.99833335\\
22 0.998200018\\
20 0.997966687\\
18 0.997233361\\
16 0.996500035\\
14 0.99500005\\
12 0.991966747\\
10 0.984600152\\
8 0.969133622000001\\
6 0.938833844\\
4 0.872634182999999\\
2 0.757800972000009\\
};
\addlegendentry{var 3/64};
\addplot [color=red,solid,mark=triangle,mark options={solid,rotate=90}]
table[row sep=crcr]{%
40 0.998166685\\
38 0.998166685\\
36 0.998166685\\
34 0.998166685\\
32 0.998166685\\
30 0.998166685\\
28 0.998166685\\
26 0.998133352\\
24 0.998100019\\
22 0.997933354\\
20 0.997633357\\
18 0.997200028\\
16 0.996533368\\
14 0.994833384\\
12 0.992300075\\
10 0.984833477\\
8 0.971600263\\
6 0.941933826\\
4 0.880234148999998\\
2 0.763934322000008\\
};
\addlegendentry{fix 3/64};
\end{axis}
\end{tikzpicture}
답변1
내부 제한 사항이 발생했습니다 pgfplots
. 로그 스케일을 사용할 때 축 범위가 "너무 작아"서는 안 됩니다(불행히도 제한에 도달했음을 보고하지 않습니다). 이 기능이 추가되어야 한다고 생각되면 기능 요청을 제출할 수 있습니다.
@percusse의 아이디어를 얻고 실행하려면 다음을 모두 수정할 수 ymin
있습니다 log plot exponent style
.
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=7.607cm,
height=7cm,
at={(0cm,0cm)},
scale only axis,
xmin=10,
xmax=40,
xlabel={EbNo (dB)},
xmajorgrids,
ymode=log,
ymin=0.98,
ymax=1,
log plot exponent style/.append style={/pgf/number format/precision=4},
yminorticks=true,
ylabel={Probability},
ymajorgrids,
yminorgrids,
axis background/.style={fill=white},
legend style={at={(0.688,0.157)},anchor=south west,legend cell align=left,align=left,draw=white!15!black,font=\scriptsize}
]
\addplot [color=blue,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
40 0.998700013\\
38 0.99866668\\
36 0.99866668\\
34 0.998633347\\
32 0.998633347\\
30 0.998566681\\
28 0.998466682\\
26 0.998433349\\
24 0.99833335\\
22 0.998200018\\
20 0.997966687\\
18 0.997233361\\
16 0.996500035\\
14 0.99500005\\
12 0.991966747\\
10 0.984600152\\
8 0.969133622000001\\
6 0.938833844\\
4 0.872634182999999\\
2 0.757800972000009\\
};
\addlegendentry{var 3/64};
\addplot [color=red,solid,mark=triangle,mark options={solid,rotate=90}]
table[row sep=crcr]{%
40 0.998166685\\
38 0.998166685\\
36 0.998166685\\
34 0.998166685\\
32 0.998166685\\
30 0.998166685\\
28 0.998166685\\
26 0.998133352\\
24 0.998100019\\
22 0.997933354\\
20 0.997633357\\
18 0.997200028\\
16 0.996533368\\
14 0.994833384\\
12 0.992300075\\
10 0.984833477\\
8 0.971600263\\
6 0.941933826\\
4 0.880234148999998\\
2 0.763934322000008\\
};
\addlegendentry{fix 3/64};
\end{axis}
\end{tikzpicture}
\end{document}