Added second rssi plot, LOS test setup

This commit is contained in:
MBulli
2020-03-25 17:18:17 +01:00
parent 62b8d40965
commit d9b63ba706
17 changed files with 1928 additions and 35 deletions

View File

@@ -0,0 +1,29 @@
\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\begin{axis}[
width=7.5cm,
height=6.5cm,
ybar,
bar width=0.75,
xtick align=inside,
xlabel ={Measurement point},
ylabel ={RSSI in \si{\dBm}},
legend pos=north east,
xmajorgrids=true,
%xminorgrids=true,
ymajorgrids=true,
%yminorgrids=true,
%enlarge x limits=false,
%enlarge y limits=false,
ymax=-55,
ymin=-75,
xtick={1,2,3,4,5,6,7,8,9,10,11,12,13},
]
\addplot [ta2skyblue, fill=ta2skyblue] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean2.csv};
%\addplot [blue, mark=x] table[x=X,y=RSSI,col sep=comma]{../data/BSTMean2.csv};
\end{axis}
\end{tikzpicture}
\end{document}