Skip to content

Instantly share code, notes, and snippets.

@egeerardyn
Last active August 31, 2015 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egeerardyn/d358a4cc0d0d3ec388f7 to your computer and use it in GitHub Desktop.
Save egeerardyn/d358a4cc0d0d3ec388f7 to your computer and use it in GitHub Desktop.
m2t R2014b PR750 vs develop
# MATLAB 8.4 (Mac OS 10.10.5) commit 46fb0806fe
## Unreliable tests
These do not cause the build to fail.
| Testcase | Name | OK | Status |
| :--------- | :--------------------- | :----------------------: | :-------------------------------------------------------------------------- |
| `ACID(1)` | `multiline_labels` | :heavy_exclamation_mark: | hash a2fb844c26e59f8089b54741a49e3d52 != (01d4eeae27254d91a0f8316897e23e81) |
| `ACID(6)` | `sine_with_annotation` | :heavy_exclamation_mark: | hash bd96c5a63e3d67dcede593e8063cbe83 != (7d415c014eec35c249802eb3a3ee519e) |
| `ACID(10)` | `peaks_contourf` | :heavy_exclamation_mark: | hash 030941f855ccd9296b66b463e84559a3 != (77bfa3a9f07e49b9061d919551ad0a0f) |
| `ACID(16)` | `logplot` | :heavy_exclamation_mark: | hash 75608a2f050cec6bd699ae2f1d2aba3e != (8d0a305ae7092f6f4141d33a5902ee47) |
| `ACID(18)` | `legendplot` | :heavy_exclamation_mark: | hash 8df5189ea4afc8c47d5a53189dc7e104 != (746423d1c0d403421667221a6b0528bf) |
| `ACID(24)` | `quiver3plot` | :heavy_exclamation_mark: | hash 5bab28f8aab62ed68f729d17fed12d24 != (612ab8ee8ed66a0368767b39854bb274) |
| `ACID(34)` | `bars` | :heavy_exclamation_mark: | hash 54625f5dfc2309fa9ad69564dce80c29 != (26cfa565f6c7581d8a0820aa15946f0c) |
| `ACID(38)` | `subplot2x2b` | :heavy_exclamation_mark: | hash 269a5b987a97fe321b1303a522795aa4 != (63cf7ce7f29fef045cc5ab3042c3e89b) |
| `ACID(40)` | `subplotCustom` | :heavy_exclamation_mark: | hash 1d7fe17273f430278b5ba4b559ec9f6e != (c3ac3cf225706a3a157a7543c4b72c24) |
| `ACID(42)` | `bodeplots` | :heavy_exclamation_mark: | hash 564a3ecdd23a7aa37a83fa7e530d82bf != (8f6cafc1771cc3a506c8fc46c15ec43e) |
| `ACID(43)` | `rlocusPlot` | :heavy_exclamation_mark: | hash 3755c998703a9a1453c1e5433830b3fa != (f372b9a4004fa45ac96a21014656e143) |
| `ACID(48)` | `zplanePlot2` | :heavy_exclamation_mark: | hash b17979195d439feeff04884322b58db9 != (fb3ba1a4db46c9975cd00e6da99ebe48) |
| `ACID(58)` | `surfPlot2` | :heavy_exclamation_mark: | hash 80a4bec384ed6d3fffb85fb268025315 != (eb8e6d18db994ba4a90e177bd44b5db3) |
| `ACID(94)` | `stackedBarsWithOther` | :heavy_exclamation_mark: | hash ef1a39444e514591464725da902ac073 != (979b797068fb431c57e85e813308a2ea) |
| `ACID(97)` | `overlappingPlots` | :heavy_exclamation_mark: | hash 0fb042829e28c31e6cd96910974ea970 != (e3f4a07b2e345edb1d3ccfcafbe3d163) |
## Reliable tests
Only the reliable tests determine the build outcome.
Passing tests are not shown (only failed and skipped tests).
| Testcase | Name | OK | Status |
| :--------- | :----------------- | :----------------------: | :-------------------------------------------------------------------------- |
| `ACID(21)` | `zoom` | :heavy_exclamation_mark: | hash c64f7b3b3706f195123ca0c46f1de987 != (817b9999d832dc238b89573037cabc81) |
| `ACID(47)` | `zplanePlot1` | :heavy_exclamation_mark: | hash 484cf570b96ae970b4e36e09d091168e != (03f1e3fabe0d9afe6692d42aa64da78e) |
| `ACID(49)` | `freqResponsePlot` | :heavy_exclamation_mark: | hash a91f528c00b6f13279f6eb3937fe2f7e != (396383b779bf45e50cc0561803efb4b3) |
| `ACID(17)` | `colorbarLogplot` | :grey_question: | SKIPPED |
## Test summary
Test results for m2t commit 46fb0806fe running with MATLAB 8.4 on Mac OS 10.10.5.
```matlab
suite = @ACID;
alltests = [1:99];
reliable = [2:5 7:9 11:15 17 19:23 25:33 35:37 39 41 44:47 49:57 59:93 95:96 98:99];
unreliable = [1 6 10 16 18 24 34 38 40 42:43 48 58 94 97];
failReliable = [21 47 49];
passUnreliable = [];
skipped = [17];
```
| | Pass | Fail | Skip | Total |
| :--------- | ---: | ---: | ---: | ----: |
| Unreliable | 0 | 15 | 0 | 15 |
| Reliable | 80 | 3 | 1 | 84 |
| Total | 80 | 18 | 1 | 99 |
Build fails with 3 errors. :heavy_exclamation_mark:
# ./Makefile
ECHOCMD:=/bin/echo -e
LATEX:=pdflatex --shell-escape -interaction=batchmode
TEST_SRCS:=$(wildcard test*-converted.tex)
TEST_PDFS:=$(TEST_SRCS:.tex=.pdf)
default: $(TEST_PDFS)
%.pdf: %.tex
@$(LATEX) $<
.PHONY: clean
clean:
rm -f test*-converted.aux \
test*-converted.log \
test*-converted.pdf
distclean: clean
rm -f test*-converted.tex \
test*-converted*.png
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.956\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
xtick={ 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5},
xticklabels={\empty},
xlabel style={align=center},
xlabel={one\\[1ex]two\\[1ex]three},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-1.5,
ymax= 1.5,
ytick={\empty},
ylabel style={align=center},
ylabel={one\\[1ex]$^\circ\text{ }\infty$\\[1ex]three},
axis background/.style={fill=white},
title style={font=\bfseries,align=center},
title={multline\\[1ex]title},
legend style={legend cell align=left,align=left,draw=black}
]
\addplot [color=mycolor1,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
1 0\\
2 1\\
3 1.5\\
4 1\\
5 -1\\
};
\addlegendentry{multi-line legends\\$\text{do work 2}^\text{2}\text{=4}$};
\addplot [color=mycolor2,dashed,mark=x,mark options={solid}]
table[row sep=crcr]{%
1 -1.5\\
2 0.5\\
3 1\\
4 0.5\\
5 -0.5\\
};
\addlegendentry{second\\plot};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,1.00000,1.00000}%
\definecolor{mycolor2}{rgb}{0.00000,1.00000,0.34375}%
\definecolor{mycolor3}{rgb}{0.21875,1.00000,0.00000}%
\definecolor{mycolor4}{rgb}{0.87500,1.00000,0.00000}%
\definecolor{mycolor5}{rgb}{1.00000,0.56250,0.00000}%
\definecolor{mycolor6}{rgb}{0.00000,0.43750,1.00000}%
\definecolor{mycolor7}{rgb}{0.12500,0.00000,1.00000}%
\definecolor{mycolor8}{rgb}{0.78125,0.00000,1.00000}%
\definecolor{mycolor9}{rgb}{1.00000,0.00000,0.65625}%
\definecolor{mycolor10}{rgb}{1.00000,0.00000,0.09375}%
\definecolor{mycolor11}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.825\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min=-6.3605,
point meta max=6.29093,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 20,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 1,
ymax= 20,
axis background/.style={fill=white},
legend style={legend cell align=left,align=left,draw=black},
colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},
colorbar
]
\addplot[fill=mycolor1,draw=black,solid] table[row sep=crcr] {%
%
x y\\
1 1\\
1 20\\
20 20\\
20 1\\
};
\addplot[fill=mycolor2,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
7.35699 1\\
7 1.29058\\
6.42104 2\\
6.08891 3\\
6.09991 4\\
6.55098 5\\
7 5.20808\\
7.91035 6\\
8 6.02843\\
9 6.60022\\
9.60052 7\\
10 7.26219\\
11 7.92474\\
11.2676 8\\
12 8.58886\\
12.7787 8\\
13 7.91882\\
14 7.23347\\
14.4648 7\\
15 6.50061\\
15.9167 6\\
16 5.8081\\
16.9549 5\\
17 4.55679\\
17.2714 4\\
17 3.37445\\
16.9239 3\\
16.2888 2\\
16 1.69828\\
15.1313 1\\
};
\addplot[fill=mycolor3,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
13.2234 3\\
13 2.83678\\
12 2.39648\\
11 2.28259\\
10 2.40663\\
9 2.90427\\
8.88281 3\\
8.05718 4\\
8.02077 5\\
8.69458 6\\
9 6.17764\\
10 6.86093\\
10.2388 7\\
11 7.50089\\
12 7.74619\\
13 7.33095\\
13.454 7\\
14 6.37683\\
14.3949 6\\
14.6279 5\\
14.2647 4\\
14 3.68233\\
13.2234 3\\
};
\addplot[fill=mycolor4,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
13.2117 4\\
13 3.80203\\
12 3.24193\\
11 3.09848\\
10 3.26581\\
9 3.97585\\
8.97868 4\\
8.68115 5\\
9 5.45445\\
9.30927 6\\
10 6.48572\\
10.8829 7\\
11 7.07704\\
12 7.25244\\
12.5392 7\\
13 6.69562\\
13.6284 6\\
13.763 5\\
13.2117 4\\
};
\addplot[fill=mycolor5,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
12.2069 4\\
12 3.87162\\
11 3.66474\\
10 3.93067\\
9.90354 4\\
9.31334 5\\
9.84285 6\\
10 6.11051\\
11 6.65689\\
12 6.7392\\
12.9991 6\\
13 5.99181\\
13.1001 5\\
13 4.83813\\
12.2069 4\\
};
\addplot[fill=red,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
12.3945 5\\
12 4.58999\\
11 4.28975\\
10 4.87043\\
9.91922 5\\
10 5.15896\\
10.5546 6\\
11 6.23755\\
12 6.20556\\
12.2778 6\\
12.3945 5\\
};
\addplot[fill=mycolor2,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
1 11.2338\\
1.04897 12\\
1.23135 13\\
1.74637 14\\
2 14.2959\\
2.77097 15\\
3 15.1329\\
4 15.2397\\
4.27303 15\\
5 14.8707\\
6 14.4038\\
6.46944 14\\
7 13.7462\\
8 13.0027\\
8.00412 13\\
8.65595 12\\
8.38897 11\\
8 10.4303\\
7.75875 10\\
7 9.01646\\
6.97786 9\\
6 8.04785\\
5.8648 8\\
5 7.242\\
4.1398 7\\
4 6.82142\\
3 6.76139\\
2.51857 7\\
2 7.38238\\
1.46033 8\\
1.10698 9\\
1 9.99624\\
};
\addplot[fill=mycolor3,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
7.16059 10\\
7 9.79183\\
6 9.06307\\
5 9.0756\\
4.23242 10\\
4.10659 11\\
4.31231 12\\
5 12.945\\
5.08931 13\\
6 13.2999\\
7 13.0101\\
7.01354 13\\
7.78717 12\\
7.67812 11\\
7.16059 10\\
};
\addplot[fill=mycolor4,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
6.95067 11\\
6 10.1746\\
5.42477 11\\
5.85301 12\\
6 12.1091\\
6.42816 12\\
6.95067 11\\
};
\addplot[fill=mycolor6,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
6.83102 7\\
7 6.83901\\
8 6.67534\\
8.90297 7\\
9 7.02942\\
10 7.6788\\
10.4839 8\\
10.9275 9\\
10.5896 10\\
10 10.8892\\
9 10.8298\\
8.43163 10\\
8 9.53988\\
7.58298 9\\
7 8.05561\\
6.94296 8\\
6.83102 7\\
};
\addplot[fill=mycolor7,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
7.74005 8\\
8 7.60078\\
9 7.57495\\
9.77283 8\\
10 8.4346\\
10.2129 9\\
10 9.44877\\
9 9.79047\\
8.27056 9\\
8 8.52468\\
7.74005 8\\
};
\addplot[fill=mycolor6,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
13.9342 8\\
14 7.95616\\
15 7.6341\\
16 7.93217\\
16.0824 8\\
16.768 9\\
16.9852 10\\
16.9753 11\\
16.739 12\\
16.2001 13\\
16 13.3255\\
15.5995 14\\
15.315 15\\
15 15.8754\\
14.9719 16\\
14.468 17\\
14 17.4967\\
13.3672 18\\
13 18.2625\\
12 18.7023\\
11 18.8662\\
10 18.8666\\
9 18.7018\\
8 18.2501\\
7.66043 18\\
7 17.4101\\
6.65105 17\\
6.30498 16\\
6.55277 15\\
7 14.5957\\
7.50406 14\\
8 13.6091\\
8.92013 13\\
9 12.8733\\
10 12.4652\\
11 12.8039\\
12 12.8729\\
12.7613 12\\
12.6572 11\\
12.6125 10\\
12.8545 9\\
13 8.88456\\
13.9342 8\\
};
\addplot[fill=mycolor7,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
13.9094 9\\
14 8.91395\\
15 8.74641\\
15.3406 9\\
15.8806 10\\
15.8628 11\\
15.3314 12\\
15 12.391\\
14 12.4887\\
13.8157 12\\
13.4974 11\\
13.4916 10\\
13.9094 9\\
};
\addplot[fill=mycolor7,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
8.24991 14\\
9 13.4612\\
10 13.2252\\
11 13.3155\\
12 13.4434\\
13 13.5082\\
13.8852 14\\
14 14.2792\\
14.1729 15\\
14 15.8053\\
13.9713 16\\
13.3299 17\\
13 17.2915\\
12 17.8524\\
11.3458 18\\
11 18.1005\\
10 18.1014\\
9.65293 18\\
9 17.8515\\
8 17.2598\\
7.72462 17\\
7.20115 16\\
7.34008 15\\
8 14.248\\
8.24991 14\\
};
\addplot[fill=mycolor8,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
8.95321 14\\
9 13.9664\\
10 13.6469\\
11 13.7153\\
12 13.9418\\
12.1903 14\\
13 14.5118\\
13.3632 15\\
13.2656 16\\
13 16.3609\\
12.3941 17\\
12 17.2578\\
11 17.576\\
10 17.5776\\
9 17.2557\\
8.62381 17\\
8 16.2427\\
7.85162 16\\
7.95245 15\\
8 14.9458\\
8.95321 14\\
};
\addplot[fill=mycolor9,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
8.5172 15\\
9 14.5202\\
10 14.0761\\
11 14.1301\\
12 14.4973\\
12.6293 15\\
12.5954 16\\
12 16.6183\\
11.2416 17\\
11 17.0881\\
10 17.0906\\
9.75426 17\\
9 16.613\\
8.46051 16\\
8.5172 15\\
};
\addplot[fill=mycolor10,draw=black,solid,forget plot] table[row sep=crcr] {%
%
x y\\
9.12448 15\\
10 14.5433\\
11 14.582\\
11.896 15\\
11.9226 16\\
11 16.5449\\
10 16.5513\\
9.08738 16\\
9.12448 15\\
};
\addlegendentry{Contour};
\addplot [color=mycolor11,solid,forget plot]
table[row sep=crcr]{%
1 1\\
20 20\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis background/.style={fill=white}
]
\addplot [color=red,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
0.987354 0.18573\\
0.949734 0.92718\\
0.888094 0.816185\\
0.803991 -0.0452066\\
nan nan\\
0.440684 -0.0962215\\
0.292802 0.785578\\
0.137514 0.945121\\
-0.0212528 0.235724\\
nan nan\\
0.392527 -0.1\\
0.515318 0.696773\\
0.644664 0.980048\\
0.757705 0.362272\\
0.803344 -0.1\\
nan nan\\
0.982802 -0.1\\
0.997249 0.468598\\
0.996388 0.99655\\
0.970326 0.608278\\
0.932498 -0.1\\
nan nan\\
0.674096 -0.1\\
0.636347 0.203095\\
0.506006 0.933667\\
0.362868 0.80583\\
0.210551 -0.0628834\\
nan nan\\
0.116999 -0.1\\
0.148232 0.0717147\\
0.30314 0.878052\\
0.45038 0.877112\\
0.586229 0.0697596\\
0.609803 -0.1\\
nan nan\\
0.900195 -0.1\\
0.953069 0.709361\\
0.989013 0.976376\\
0.999941 0.345716\\
0.993192 -0.1\\
nan nan\\
0.84963 -0.1\\
0.797504 0.484162\\
0.691773 0.997863\\
0.568545 0.594133\\
0.467997 -0.1\\
nan nan\\
0.0231186 -0.1\\
-0.0320788 0.220396\\
nan nan\\
-0.0845111 0.364098\\
0.0745239 0.980436\\
0.231674 0.695365\\
0.361848 -0.1\\
nan nan\\
0.740643 -0.1\\
0.764728 0.0893598\\
0.857208 0.886386\\
0.928007 0.868473\\
0.975335 0.0520899\\
0.979322 -0.1\\
nan nan\\
0.962365 -0.1\\
0.915415 0.721727\\
0.840027 0.972398\\
0.743393 0.329051\\
0.69103 -0.1\\
nan nan\\
0.295526 -0.1\\
0.199951 0.499575\\
0.0420908 0.998863\\
-0.1 0.62419\\
nan nan\\
-0.1 0.795402\\
0.000405498 0.451138\\
0.0915725 -0.1\\
nan nan\\
0.526932 -0.1\\
0.594968 0.380528\\
0.714865 0.983767\\
0.816681 0.682535\\
0.885064 -0.1\\
nan nan\\
0.997613 -0.1\\
0.999765 0.106977\\
0.983688 0.894442\\
0.942731 0.859561\\
0.87793 0.0344038\\
0.864281 -0.1\\
nan nan\\
0.548163 -0.1\\
0.421139 0.733867\\
0.272024 0.968116\\
0.116029 0.312284\\
0.0465399 -0.1\\
nan nan\\
0.274842 -0.1\\
0.392946 0.637505\\
0.533758 0.992754\\
0.66107 0.435269\\
0.722882 -0.1\\
nan nan\\
0.953898 -0.1\\
0.977668 0.396839\\
0.998621 0.986789\\
0.994315 0.66949\\
0.970018 -0.1\\
nan nan\\
0.760771 -0.1\\
0.736106 0.12456\\
0.619491 0.902218\\
0.487207 0.85038\\
0.3426 0.016707\\
0.321532 -0.1\\
nan nan\\
0.0112352 -0.00785628\\
0.169616 0.8372\\
0.323708 0.912539\\
0.469611 0.148893\\
0.506654 -0.1\\
nan nan\\
0.838762 -0.1\\
0.902557 0.651043\\
0.959402 0.990471\\
0.991982 0.419264\\
0.996048 -0.1\\
nan nan\\
0.908302 -0.1\\
0.872693 0.413025\\
0.78425 0.989503\\
0.675971 0.656236\\
0.574739 -0.1\\
nan nan\\
0.147398 -0.1\\
0.105266 0.142105\\
-0.0537183 0.909711\\
nan nan\\
-0.0629106 0.961671\\
0.0961044 0.75033\\
0.243851 -0.1\\
nan nan\\
0.65276 -0.1\\
0.669157 0.00984632\\
0.778504 0.84675\\
0.86816 0.905156\\
0.935859 0.131365\\
0.947246 -0.1\\
nan nan\\
0.987439 -0.1\\
0.961959 0.664378\\
0.906483 0.987878\\
0.82808 0.403127\\
0.775761 -0.1\\
nan nan\\
0.412717 -0.1\\
0.332406 0.429082\\
0.178684 0.991906\\
0.020442 0.642776\\
-0.1 -0.0704246\\
nan nan\\
0.416579 -0.1\\
0.479145 0.305758\\
0.612236 0.966374\\
0.729842 0.73851\\
0.821517 -0.1\\
nan nan\\
0.988678 -0.1\\
0.993293 0.0275458\\
0.999062 0.856035\\
0.979562 0.897489\\
0.935286 0.113796\\
0.918936 -0.1\\
nan nan\\
0.647178 -0.1\\
0.541522 0.677504\\
0.401397 0.984975\\
0.251119 0.386864\\
0.171167 -0.1\\
nan nan\\
0.152583 -0.1\\
0.263152 0.574197\\
0.41277 0.999167\\
0.551948 0.505507\\
0.631057 -0.1\\
nan nan\\
0.91004 -0.1\\
0.93962 0.322564\\
0.98199 0.970775\\
0.999524 0.726459\\
0.992504 -0.1\\
nan nan\\
0.835431 -0.1\\
0.82196 0.0452367\\
0.721273 0.865051\\
0.602344 0.889541\\
0.468179 0.0961915\\
0.435693 -0.1\\
nan nan\\
-0.1 0.056244\\
0.0328894 0.791042\\
0.190921 0.942181\\
0.344124 0.227083\\
0.395281 -0.1\\
nan nan\\
0.764174 -0.1\\
0.834996 0.5886\\
0.91167 0.998288\\
0.965286 0.490155\\
0.98326 -0.1\\
nan nan\\
0.95269 -0.1\\
0.931399 0.33927\\
0.861914 0.974871\\
0.770628 0.71418\\
0.672305 -0.1\\
nan nan\\
0.268907 -0.1\\
0.240621 0.0629135\\
0.083703 0.873796\\
-0.0753326 0.881315\\
nan nan\\
-0.0412805 0.800539\\
0.11764 -0.0717448\\
nan nan\\
0.560946 -0.0697296\\
0.685094 0.801748\\
0.791915 0.936102\\
0.878705 0.209808\\
0.900467 -0.1\\
nan nan\\
0.997347 -0.1\\
0.990332 0.602818\\
0.955816 0.997096\\
0.897125 0.474648\\
0.848352 -0.1\\
nan nan\\
0.523404 -0.1\\
0.458582 0.355868\\
0.311901 0.978662\\
0.157332 0.701678\\
0.0194897 -0.1\\
nan nan\\
0.299905 -0.1\\
0.354272 0.22905\\
0.498043 0.942857\\
0.629217 0.789805\\
0.744477 -0.0893898\\
nan nan\\
0.968058 -0.0520598\\
0.995564 0.812202\\
0.99789 0.929729\\
0.974976 0.192467\\
0.959756 -0.1\\
nan nan\\
0.736562 -0.1\\
0.651676 0.616848\\
0.523187 0.995591\\
0.381466 0.458993\\
0.293196 -0.1\\
nan nan\\
0.0277379 -0.1\\
0.128387 0.507249\\
0.283985 0.999247\\
0.4324 0.572542\\
0.52941 -0.1\\
nan nan\\
0.852007 -0.1\\
0.883824 0.246246\\
0.946812 0.948607\\
0.985852 0.778823\\
0.999846 -0.1\\
nan nan\\
0.892288 -0.0343737\\
0.809432 0.822402\\
0.706103 0.923065\\
0.584914 0.175066\\
0.543763 -0.1\\
nan nan\\
0.110911 -0.1\\
-0.0120461 0.630684\\
nan nan\\
-0.1 0.746209\\
0.0545281 0.965853\\
0.212136 0.303834\\
0.277446 -0.1\\
nan nan\\
0.677527 -0.1\\
0.751663 0.522425\\
0.846718 0.999777\\
0.920356 0.557939\\
0.955059 -0.1\\
nan nan\\
0.9821 -0.1\\
0.972511 0.263364\\
0.923297 0.95406\\
0.850729 0.767598\\
0.759238 -0.1\\
nan nan\\
0.371432 -0.0166769\\
0.219543 0.832343\\
0.0621011 0.916111\\
-0.0969116 0.15761\\
nan nan\\
0.449552 -0.1\\
0.578744 0.751664\\
0.700711 0.961115\\
0.804954 0.286921\\
0.839556 -0.1\\
nan nan\\
0.991744 -0.1\\
0.999999 0.537438\\
0.987095 0.999994\\
0.949225 0.543161\\
0.907605 -0.1\\
nan nan\\
0.625766 -0.1\\
0.576096 0.2804\\
0.439228 0.959215\\
0.291251 0.756132\\
0.143193 -0.1\\
nan nan\\
0.178896 -0.1\\
0.222707 0.150891\\
0.374442 0.913363\\
0.516707 0.836094\\
0.645903 -0.00987647\\
nan nan\\
0.926244 -0.1\\
0.973261 0.763221\\
0.997368 0.956076\\
0.996249 0.269919\\
0.98583 -0.1\\
nan nan\\
0.8147 -0.1\\
0.74952 0.552282\\
0.635095 0.999898\\
0.504607 0.528212\\
0.410603 -0.1\\
nan nan\\
-0.00880233 0.437087\\
0.149836 0.992994\\
0.304685 0.635947\\
0.419674 -0.1\\
nan nan\\
0.78087 -0.1\\
0.811333 0.168366\\
0.893748 0.920427\\
0.953559 0.826252\\
0.989251 -0.027576\\
nan nan\\
0.944779 -0.1\\
0.882301 0.77454\\
0.796524 0.950737\\
0.690601 0.252832\\
0.643805 -0.1\\
nan nan\\
0.234048 -0.1\\
0.12517 0.566952\\
-0.0336999 0.999488\\
nan nan\\
-0.0828948 0.983402\\
0.0761413 0.378659\\
0.155062 -0.1\\
nan nan\\
0.58018 -0.1\\
0.654133 0.45294\\
0.765772 0.99493\\
0.858042 0.622186\\
0.911984 -0.1\\
nan nan\\
0.996144 -0.1\\
0.995254 0.185789\\
0.96724 0.927203\\
0.914761 0.816151\\
0.839146 -0.0452669\\
nan nan\\
0.495227 -0.0961615\\
0.351236 0.785615\\
0.198362 0.945101\\
0.0404702 0.235665\\
-0.0171284 -0.1\\
nan nan\\
0.335126 -0.1\\
0.461462 0.696816\\
0.596271 0.980036\\
0.715998 0.362216\\
0.765396 -0.1\\
nan nan\\
0.970604 -0.1\\
0.990777 0.468651\\
0.999729 0.996555\\
0.983395 0.608231\\
0.952596 -0.1\\
nan nan\\
0.718156 -0.1\\
0.682728 0.203154\\
0.558257 0.933688\\
0.419667 0.805794\\
0.270463 -0.0629435\\
nan nan\\
0.055618 -0.1\\
0.0869351 0.0717748\\
0.243769 0.878081\\
0.394437 0.877083\\
0.535129 0.0696995\\
0.55989 -0.1\\
nan nan\\
0.871797 -0.1\\
0.932575 0.709403\\
0.978008 0.976363\\
0.998705 0.345659\\
0.996561 -0.1\\
nan nan\\
0.880199 -0.1\\
0.833207 0.484215\\
0.735007 0.997867\\
0.618216 0.594084\\
0.521462 -0.1\\
nan nan\\
0.0845865 -0.1\\
0.029647 0.220455\\
-0.1 0.807663\\
nan nan\\
-0.1 0.542133\\
0.0128571 0.980448\\
0.171215 0.695322\\
0.303734 -0.1\\
nan nan\\
0.697968 -0.1\\
0.723516 0.0894199\\
0.823803 0.886414\\
0.903254 0.868443\\
0.959859 0.0520297\\
0.965545 -0.1\\
nan nan\\
0.977038 -0.1\\
0.938505 0.721769\\
0.8719 0.972384\\
0.783243 0.328994\\
0.734047 -0.1\\
nan nan\\
0.35372 -0.1\\
0.260021 0.499628\\
0.103652 0.998866\\
-0.0553379 0.579752\\
nan nan\\
-0.0612917 0.451084\\
0.0301439 -0.1\\
nan nan\\
0.473714 -0.1\\
0.544246 0.380584\\
0.670361 0.983778\\
0.779521 0.682491\\
0.854877 -0.1\\
nan nan\\
0.994759 -0.1\\
0.999197 0.107037\\
0.992912 0.894469\\
0.961514 0.859531\\
0.905797 0.0343436\\
0.893468 -0.1\\
nan nan\\
0.598658 -0.1\\
0.476295 0.733908\\
0.330876 0.968101\\
0.177088 0.312226\\
0.107897 -0.1\\
nan nan\\
0.215127 -0.1\\
0.335464 0.637551\\
0.480568 0.992746\\
0.613518 0.435215\\
0.679148 -0.1\\
nan nan\\
0.934221 -0.1\\
0.96284 0.396894\\
0.993479 0.986799\\
0.99899 0.669446\\
0.982695 -0.1\\
nan nan\\
0.799143 -0.1\\
0.776464 0.12462\\
0.666742 0.902244\\
0.540157 0.850349\\
0.39991 0.0166467\\
0.379252 -0.1\\
nan nan\\
-0.0504787 -0.007796\\
0.108491 0.837233\\
0.264717 0.912514\\
0.414247 0.148834\\
0.45267 -0.1\\
nan nan\\
0.803795 -0.1\\
0.874273 0.651089\\
0.940174 0.990462\\
0.982296 0.419209\\
0.991672 -0.1\\
nan nan\\
0.931916 -0.1\\
0.901155 0.41308\\
0.821035 0.989511\\
0.720149 0.656191\\
0.623991 -0.1\\
nan nan\\
0.207994 -0.1\\
0.166419 0.142165\\
0.00799136 0.909736\\
-0.1 0.862874\\
nan nan\\
-0.1 0.929268\\
0.0345104 0.75029\\
0.183585 -0.1\\
nan nan\\
0.604885 -0.1\\
0.622034 0.00990661\\
0.738297 0.846782\\
0.835888 0.90513\\
0.912336 0.131306\\
0.926136 -0.1\\
nan nan\\
0.994542 -0.1\\
0.976981 0.664423\\
0.930807 0.987868\\
0.86109 0.403072\\
0.812911 -0.1\\
nan nan\\
0.467923 -0.1\\
0.389961 0.429136\\
0.239047 0.991913\\
0.0820865 0.64273\\
-0.04356 -0.1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.329\figureWidth,
height=0.438\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min=76.9048,
point meta max=322.095,
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-6.31579,
xmax=27.3684,
xlabel={$\text{\$v}_{\text{2d}}\text{\$}$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-6.31579,
ymax=27.3684,
ylabel={$\text{\$v}_{\text{2q}}\text{\$}$},
axis background/.style={fill=white},
colorbar
]
\addplot[contour prepared, contour prepared format=matlab, contour/labels=false] table[row sep=crcr] {%
%
76.9048 2\\
26.3358 -6.31579\\
27.3684 -6.23574\\
76.9048 4\\
27.3684 6.18875\\
25.7043 6.31579\\
25.4937 10.5263\\
27.3684 10.6673\\
76.9048 3\\
27.3684 22.9722\\
24.8622 23.1579\\
24.6516 27.3684\\
89.8095 2\\
23.619 -6.31579\\
27.3684 -6.02514\\
89.8095 6\\
27.3684 5.98137\\
23.1579 6.30044\\
23.1411 6.31579\\
23.1207 10.5263\\
23.1579 10.56\\
27.3684 10.8715\\
89.8095 4\\
27.3684 22.771\\
23.1579 23.0698\\
23.0619 23.1579\\
23.0431 27.3684\\
102.714 3\\
22.9289 -6.31579\\
23.1579 -6.10885\\
27.3684 -5.81454\\
102.714 6\\
27.3684 5.77398\\
23.1579 6.05568\\
22.8734 6.31579\\
22.8557 10.5263\\
23.1579 10.8005\\
27.3684 11.0758\\
102.714 4\\
27.3684 22.5698\\
23.1579 22.8336\\
22.8044 23.1579\\
22.788 27.3684\\
115.619 3\\
22.6531 -6.31579\\
23.1579 -5.8596\\
27.3684 -5.60393\\
115.619 6\\
27.3684 5.56659\\
23.1579 5.81092\\
22.6058 6.31579\\
22.5906 10.5263\\
23.1579 11.0409\\
27.3684 11.2801\\
115.619 4\\
27.3684 22.3685\\
23.1579 22.5974\\
22.5469 23.1579\\
22.5329 27.3684\\
115.619 7\\
19.0451 -2.10526\\
18.9474 -2.21452\\
17.9749 -2.10526\\
17.7644 2.10526\\
18.9474 2.23526\\
19.0651 2.10526\\
19.0451 -2.10526\\
115.619 7\\
19.1227 14.7368\\
18.9474 14.5417\\
17.1328 14.7368\\
16.9223 18.9474\\
18.9474 19.1605\\
19.1412 18.9474\\
19.1227 14.7368\\
128.524 3\\
22.3773 -6.31579\\
23.1579 -5.61036\\
27.3684 -5.39333\\
128.524 6\\
27.3684 5.3592\\
23.1579 5.56617\\
22.3381 6.31579\\
22.3256 10.5263\\
23.1579 11.2813\\
27.3684 11.4844\\
128.524 4\\
27.3684 22.1673\\
23.1579 22.3611\\
22.2894 23.1579\\
22.2778 27.3684\\
128.524 7\\
19.3181 -2.10526\\
18.9474 -2.51978\\
15.2581 -2.10526\\
15.0476 2.10526\\
18.9474 2.53381\\
19.3354 2.10526\\
19.3181 -2.10526\\
128.524 9\\
19.3852 14.7368\\
18.9474 14.2496\\
14.7368 14.6929\\
14.6863 14.7368\\
14.6545 18.9474\\
14.7368 19.0182\\
18.9474 19.4465\\
19.4011 18.9474\\
19.3852 14.7368\\
141.429 3\\
22.1014 -6.31579\\
23.1579 -5.36111\\
27.3684 -5.18272\\
141.429 6\\
27.3684 5.15181\\
23.1579 5.32141\\
22.0704 6.31579\\
22.0605 10.5263\\
23.1579 11.5217\\
27.3684 11.6886\\
141.429 4\\
27.3684 21.966\\
23.1579 22.1249\\
22.0319 23.1579\\
22.0227 27.3684\\
141.429 9\\
19.5912 -2.10526\\
18.9474 -2.82504\\
14.7368 -2.42345\\
14.3679 -2.10526\\
14.3392 2.10526\\
14.7368 2.44414\\
18.9474 2.83236\\
19.6057 2.10526\\
19.5912 -2.10526\\
141.429 9\\
19.6477 14.7368\\
18.9474 13.9575\\
14.7368 14.3207\\
14.2585 14.7368\\
14.2333 18.9474\\
14.7368 19.3805\\
18.9474 19.7325\\
19.6611 18.9474\\
19.6477 14.7368\\
154.333 3\\
10.0351 -6.31579\\
10.5263 -6.21554\\
10.6103 -6.31579\\
154.333 3\\
21.8256 -6.31579\\
23.1579 -5.11186\\
27.3684 -4.97212\\
154.333 6\\
27.3684 4.94442\\
23.1579 5.07666\\
21.8028 6.31579\\
21.7955 10.5263\\
23.1579 11.7621\\
27.3684 11.8929\\
154.333 4\\
27.3684 21.7648\\
23.1579 21.8886\\
21.7743 23.1579\\
21.7676 27.3684\\
154.333 5\\
10.8534 27.3684\\
10.8263 23.1579\\
10.5263 22.8006\\
8.5614 23.1579\\
8.35088 27.3684\\
154.333 9\\
19.8642 -2.10526\\
18.9474 -3.1303\\
14.7368 -2.81719\\
13.9112 -2.10526\\
13.8901 2.10526\\
14.7368 2.82679\\
18.9474 3.1309\\
19.8761 2.10526\\
19.8642 -2.10526\\
154.333 7\\
10.7089 6.31579\\
10.5263 6.09563\\
9.40351 6.31579\\
9.19298 10.5263\\
10.5263 10.7779\\
10.7396 10.5263\\
10.7089 6.31579\\
154.333 9\\
19.9102 14.7368\\
18.9474 13.6653\\
14.7368 13.9486\\
13.8306 14.7368\\
13.812 18.9474\\
14.7368 19.7427\\
18.9474 20.0185\\
19.9211 18.9474\\
19.9102 14.7368\\
167.238 3\\
7.3183 -6.31579\\
10.5263 -5.66109\\
11.0747 -6.31579\\
167.238 3\\
21.5498 -6.31579\\
23.1579 -4.86262\\
27.3684 -4.76152\\
167.238 6\\
27.3684 4.73703\\
23.1579 4.8319\\
21.5351 6.31579\\
21.5304 10.5263\\
23.1579 12.0026\\
27.3684 12.0972\\
167.238 4\\
27.3684 21.5635\\
23.1579 21.6524\\
21.5168 23.1579\\
21.5125 27.3684\\
167.238 6\\
11.262 27.3684\\
11.2411 23.1579\\
10.5263 22.3067\\
6.31579 23.0233\\
6.13101 23.1579\\
6.05854 27.3684\\
167.238 9\\
20.1373 -2.10526\\
18.9474 -3.43556\\
14.7368 -3.21093\\
13.4546 -2.10526\\
13.441 2.10526\\
14.7368 3.20943\\
18.9474 3.42945\\
20.1464 2.10526\\
20.1373 -2.10526\\
167.238 7\\
11.1506 6.31579\\
10.5263 5.56293\\
6.68672 6.31579\\
6.47619 10.5263\\
10.5263 11.2905\\
11.1743 10.5263\\
11.1506 6.31579\\
167.238 9\\
20.1727 14.7368\\
18.9474 13.3732\\
14.7368 13.5764\\
13.4028 14.7368\\
13.3908 18.9474\\
14.7368 20.1049\\
18.9474 20.3044\\
20.1811 18.9474\\
20.1727 14.7368\\
180.143 4\\
5.38915 -6.31579\\
6.31579 -5.72466\\
10.5263 -5.10664\\
11.5391 -6.31579\\
180.143 3\\
21.274 -6.31579\\
23.1579 -4.61337\\
27.3684 -4.55091\\
180.143 4\\
-6.31579 2.76899\\
-5.32871 2.10526\\
-5.27416 -2.10526\\
-6.31579 -2.79408\\
180.143 6\\
27.3684 4.52964\\
23.1579 4.58714\\
21.2675 6.31579\\
21.2654 10.5263\\
23.1579 12.243\\
27.3684 12.3014\\
180.143 4\\
-6.31579 19.3805\\
-5.61727 18.9474\\
-5.53201 14.7368\\
-6.31579 14.2579\\
180.143 4\\
27.3684 21.3623\\
23.1579 21.4161\\
21.2593 23.1579\\
21.2574 27.3684\\
180.143 6\\
11.6705 27.3684\\
11.6559 23.1579\\
10.5263 21.8127\\
6.31579 22.247\\
5.06561 23.1579\\
5.03334 27.3684\\
180.143 9\\
20.4103 -2.10526\\
18.9474 -3.74081\\
14.7368 -3.60466\\
12.998 -2.10526\\
12.992 2.10526\\
14.7368 3.59208\\
18.9474 3.728\\
20.4167 2.10526\\
20.4103 -2.10526\\
180.143 9\\
11.5924 6.31579\\
10.5263 5.03022\\
6.31579 5.55906\\
5.22469 6.31579\\
5.17962 10.5263\\
6.31579 11.301\\
10.5263 11.8031\\
11.609 10.5263\\
11.5924 6.31579\\
180.143 9\\
20.4351 14.7368\\
18.9474 13.0811\\
14.7368 13.2042\\
12.975 14.7368\\
12.9696 18.9474\\
14.7368 20.4672\\
18.9474 20.5904\\
20.4411 18.9474\\
20.4351 14.7368\\
193.048 3\\
-2.5016 -6.31579\\
-2.10526 -5.54113\\
-1.25313 -6.31579\\
193.048 4\\
3.92061 -6.31579\\
6.31579 -4.78783\\
10.5263 -4.5522\\
12.0035 -6.31579\\
193.048 3\\
20.9982 -6.31579\\
23.1579 -4.36412\\
27.3684 -4.34031\\
193.048 4\\
-6.31579 3.70582\\
-3.93548 2.10526\\
-3.9489 -2.10526\\
-6.31579 -3.67047\\
193.048 6\\
27.3684 4.32226\\
23.1579 4.34239\\
20.9998 6.31579\\
21.0003 10.5263\\
23.1579 12.4834\\
27.3684 12.5057\\
193.048 4\\
-6.31579 20.4672\\
-3.8645 18.9474\\
-3.88547 14.7368\\
-6.31579 13.2516\\
193.048 4\\
27.3684 21.1611\\
23.1579 21.1799\\
21.0018 23.1579\\
21.0023 27.3684\\
193.048 6\\
12.0791 27.3684\\
12.0706 23.1579\\
10.5263 21.3188\\
6.31579 21.4708\\
4.0002 23.1579\\
4.00813 27.3684\\
193.048 7\\
2.32633 -2.10526\\
2.10526 -2.58424\\
1.67419 -2.10526\\
1.46366 2.10526\\
2.10526 2.68854\\
2.41824 2.10526\\
2.32633 -2.10526\\
193.048 9\\
20.6834 -2.10526\\
18.9474 -4.04607\\
14.7368 -3.9984\\
12.5414 -2.10526\\
12.5429 2.10526\\
14.7368 3.97473\\
18.9474 4.02655\\
20.687 2.10526\\
20.6834 -2.10526\\
193.048 7\\
-1.88471 6.31579\\
-2.10526 6.07073\\
-2.22448 6.31579\\
-2.11099 10.5263\\
-2.10526 10.5406\\
-2.09524 10.5263\\
-1.88471 6.31579\\
193.048 9\\
12.0342 6.31579\\
10.5263 4.49752\\
6.31579 4.68267\\
3.96107 6.31579\\
3.97215 10.5263\\
6.31579 12.1243\\
10.5263 12.3157\\
12.0437 10.5263\\
12.0342 6.31579\\
193.048 7\\
2.64704 14.7368\\
2.10526 13.7575\\
0.83208 14.7368\\
0.621554 18.9474\\
2.10526 19.9365\\
2.71086 18.9474\\
2.64704 14.7368\\
193.048 9\\
20.6976 14.7368\\
18.9474 12.789\\
14.7368 12.8321\\
12.5471 14.7368\\
12.5484 18.9474\\
14.7368 20.8294\\
18.9474 20.8764\\
20.701 18.9474\\
20.6976 14.7368\\
205.952 2\\
-3.76523 -6.31579\\
-6.31579 -4.54685\\
205.952 3\\
2.45208 -6.31579\\
2.10526 -5.6029\\
1.46366 -6.31579\\
205.952 4\\
20.7224 -6.31579\\
18.9474 -4.35133\\
14.7368 -4.39214\\
12.4679 -6.31579\\
205.952 4\\
-6.31579 4.64264\\
-3.69302 6.31579\\
-3.66344 10.5263\\
-6.31579 12.2454\\
205.952 6\\
27.3684 4.11487\\
23.1579 4.09763\\
20.9574 2.10526\\
20.9564 -2.10526\\
23.1579 -4.11487\\
27.3684 -4.1297\\
205.952 3\\
-6.31579 21.5539\\
-3.55026 23.1579\\
-3.50135 27.3684\\
205.952 6\\
27.3684 20.9598\\
23.1579 20.9437\\
20.961 18.9474\\
20.9601 14.7368\\
23.1579 12.7238\\
27.3684 12.71\\
205.952 5\\
-0.220551 27.3684\\
-0.0100251 23.1579\\
2.10526 21.7477\\
2.93479 23.1579\\
2.98293 27.3684\\
205.952 6\\
12.4876 27.3684\\
12.4854 23.1579\\
14.7368 21.1916\\
18.9474 21.1624\\
20.7443 23.1579\\
20.7472 27.3684\\
205.952 7\\
-2.62363 -2.10526\\
-2.10526 -3.07131\\
-1.04261 -2.10526\\
-1.25313 2.10526\\
-2.10526 3.05207\\
-2.54225 2.10526\\
-2.62363 -2.10526\\
205.952 9\\
3.71956 -2.10526\\
6.31579 -3.85101\\
10.5263 -3.99775\\
12.0848 -2.10526\\
12.0939 2.10526\\
10.5263 3.96481\\
6.31579 3.80629\\
3.74351 2.10526\\
3.71956 -2.10526\\
205.952 7\\
0.83208 6.31579\\
2.10526 5.15835\\
2.69744 6.31579\\
2.76469 10.5263\\
2.10526 11.6676\\
0.621554 10.5263\\
0.83208 6.31579\\
205.952 9\\
12.4759 6.31579\\
14.7368 4.35737\\
18.9474 4.3251\\
20.7321 6.31579\\
20.7353 10.5263\\
18.9474 12.4968\\
14.7368 12.4599\\
12.4784 10.5263\\
12.4759 6.31579\\
205.952 7\\
-2.23893 14.7368\\
-2.10526 14.4218\\
-1.88471 14.7368\\
-2.09524 18.9474\\
-2.10526 18.9674\\
-2.11173 18.9474\\
-2.23893 14.7368\\
205.952 9\\
3.80312 14.7368\\
6.31579 12.9475\\
10.5263 12.8283\\
12.1193 14.7368\\
12.1272 18.9474\\
10.5263 20.8248\\
6.31579 20.6946\\
3.81975 18.9474\\
3.80312 14.7368\\
218.857 2\\
-5.02885 -6.31579\\
-6.31579 -5.42324\\
218.857 4\\
20.4465 -6.31579\\
18.9474 -4.65659\\
14.7368 -4.78588\\
12.9323 -6.31579\\
218.857 4\\
-6.31579 5.57947\\
-5.16155 6.31579\\
-5.2159 10.5263\\
-6.31579 11.2392\\
218.857 6\\
27.3684 3.90748\\
23.1579 3.85288\\
21.2277 2.10526\\
21.2295 -2.10526\\
23.1579 -3.86563\\
27.3684 -3.9191\\
218.857 3\\
-6.31579 22.6406\\
-5.4239 23.1579\\
-5.51378 27.3684\\
218.857 6\\
27.3684 20.7586\\
23.1579 20.7074\\
21.221 18.9474\\
21.2226 14.7368\\
23.1579 12.9643\\
27.3684 12.9142\\
218.857 6\\
12.8962 27.3684\\
12.9002 23.1579\\
14.7368 21.5539\\
18.9474 21.4484\\
20.4868 23.1579\\
20.4921 27.3684\\
218.857 9\\
5.11278 -2.10526\\
6.31579 -2.91418\\
10.5263 -3.4433\\
11.6282 -2.10526\\
11.6448 2.10526\\
10.5263 3.43211\\
6.31579 2.92991\\
5.06877 2.10526\\
5.11278 -2.10526\\
218.857 9\\
12.9177 6.31579\\
14.7368 4.74002\\
18.9474 4.62365\\
20.4645 6.31579\\
20.4702 10.5263\\
18.9474 12.2047\\
14.7368 12.0878\\
12.9131 10.5263\\
12.9177 6.31579\\
218.857 9\\
4.95921 14.7368\\
6.31579 13.7708\\
10.5263 13.3409\\
11.6914 14.7368\\
11.706 18.9474\\
10.5263 20.3308\\
6.31579 19.9184\\
4.92865 18.9474\\
4.95921 14.7368\\
231.762 2\\
-6.29248 -6.31579\\
-6.31579 -6.29962\\
231.762 4\\
20.1707 -6.31579\\
18.9474 -4.96184\\
14.7368 -5.17962\\
13.3967 -6.31579\\
231.762 6\\
27.3684 3.70009\\
23.1579 3.60812\\
21.498 2.10526\\
21.5025 -2.10526\\
23.1579 -3.61638\\
27.3684 -3.7085\\
231.762 6\\
27.3684 20.5573\\
23.1579 20.4712\\
21.481 18.9474\\
21.4851 14.7368\\
23.1579 13.2047\\
27.3684 13.1185\\
231.762 6\\
13.3047 27.3684\\
13.315 23.1579\\
14.7368 21.9161\\
18.9474 21.7343\\
20.2292 23.1579\\
20.237 27.3684\\
231.762 7\\
6.68672 -2.10526\\
10.5263 -2.88885\\
11.1716 -2.10526\\
11.1958 2.10526\\
10.5263 2.89941\\
6.47619 2.10526\\
6.68672 -2.10526\\
231.762 9\\
13.3594 6.31579\\
14.7368 5.12267\\
18.9474 4.9222\\
20.1968 6.31579\\
20.2051 10.5263\\
18.9474 11.9126\\
14.7368 11.7156\\
13.3478 10.5263\\
13.3594 6.31579\\
231.762 9\\
6.11529 14.7368\\
6.31579 14.5941\\
10.5263 13.8535\\
11.2636 14.7368\\
11.2848 18.9474\\
10.5263 19.8369\\
6.31579 19.1421\\
6.03754 18.9474\\
6.11529 14.7368\\
244.667 4\\
19.8949 -6.31579\\
18.9474 -5.2671\\
14.7368 -5.57335\\
13.8611 -6.31579\\
244.667 6\\
27.3684 3.4927\\
23.1579 3.36336\\
21.7684 2.10526\\
21.7755 -2.10526\\
23.1579 -3.36713\\
27.3684 -3.49789\\
244.667 6\\
27.3684 20.3561\\
23.1579 20.2349\\
21.741 18.9474\\
21.7476 14.7368\\
23.1579 13.4451\\
27.3684 13.3228\\
244.667 6\\
13.7132 27.3684\\
13.7297 23.1579\\
14.7368 22.2784\\
18.9474 22.0203\\
19.9717 23.1579\\
19.9819 27.3684\\
244.667 7\\
9.40351 -2.10526\\
10.5263 -2.33441\\
10.715 -2.10526\\
10.7467 2.10526\\
10.5263 2.3667\\
9.19298 2.10526\\
9.40351 -2.10526\\
244.667 9\\
13.8012 6.31579\\
14.7368 5.50531\\
18.9474 5.22074\\
19.9291 6.31579\\
19.9401 10.5263\\
18.9474 11.6204\\
14.7368 11.3434\\
13.7825 10.5263\\
13.8012 6.31579\\
244.667 7\\
8.5614 14.7368\\
10.5263 14.3661\\
10.8358 14.7368\\
10.8636 18.9474\\
10.5263 19.3429\\
8.35088 18.9474\\
8.5614 14.7368\\
257.571 4\\
19.6191 -6.31579\\
18.9474 -5.57236\\
14.7368 -5.96709\\
14.3256 -6.31579\\
257.571 6\\
27.3684 3.28531\\
23.1579 3.11861\\
22.0387 2.10526\\
22.0486 -2.10526\\
23.1579 -3.11789\\
27.3684 -3.28729\\
257.571 6\\
27.3684 20.1548\\
23.1579 19.9987\\
22.0009 18.9474\\
22.0101 14.7368\\
23.1579 13.6855\\
27.3684 13.5271\\
257.571 6\\
14.1218 27.3684\\
14.1445 23.1579\\
14.7368 22.6406\\
18.9474 22.3063\\
19.7142 23.1579\\
19.7268 27.3684\\
257.571 9\\
14.2429 6.31579\\
14.7368 5.88796\\
18.9474 5.51929\\
19.6615 6.31579\\
19.675 10.5263\\
18.9474 11.3283\\
14.7368 10.9713\\
14.2171 10.5263\\
14.2429 6.31579\\
270.476 3\\
19.3433 -6.31579\\
18.9474 -5.87762\\
15.0476 -6.31579\\
270.476 6\\
27.3684 3.07792\\
23.1579 2.87385\\
22.309 2.10526\\
22.3216 -2.10526\\
23.1579 -2.86864\\
27.3684 -3.07668\\
270.476 6\\
27.3684 19.9536\\
23.1579 19.7624\\
22.2609 18.9474\\
22.2726 14.7368\\
23.1579 13.926\\
27.3684 13.7313\\
270.476 6\\
14.5303 27.3684\\
14.5593 23.1579\\
14.7368 23.0028\\
18.9474 22.5923\\
19.4567 23.1579\\
19.4717 27.3684\\
270.476 9\\
14.6847 6.31579\\
14.7368 6.27061\\
18.9474 5.81784\\
19.3938 6.31579\\
19.41 10.5263\\
18.9474 11.0362\\
14.7368 10.5991\\
14.6518 10.5263\\
14.6847 6.31579\\
283.381 3\\
19.0675 -6.31579\\
18.9474 -6.18287\\
17.7644 -6.31579\\
283.381 6\\
27.3684 2.87054\\
23.1579 2.6291\\
22.5793 2.10526\\
22.5947 -2.10526\\
23.1579 -2.61939\\
27.3684 -2.86608\\
283.381 6\\
27.3684 19.7523\\
23.1579 19.5262\\
22.5209 18.9474\\
22.5351 14.7368\\
23.1579 14.1664\\
27.3684 13.9356\\
283.381 5\\
16.0802 27.3684\\
16.2907 23.1579\\
18.9474 22.8782\\
19.1992 23.1579\\
19.2166 27.3684\\
283.381 7\\
17.1328 6.31579\\
18.9474 6.11639\\
19.1261 6.31579\\
19.1449 10.5263\\
18.9474 10.7441\\
16.9223 10.5263\\
17.1328 6.31579\\
296.286 6\\
27.3684 2.66315\\
23.1579 2.38434\\
22.8497 2.10526\\
22.8677 -2.10526\\
23.1579 -2.37015\\
27.3684 -2.65548\\
296.286 6\\
27.3684 19.5511\\
23.1579 19.29\\
22.7809 18.9474\\
22.7976 14.7368\\
23.1579 14.4068\\
27.3684 14.1399\\
296.286 3\\
18.797 27.3684\\
18.9474 24.3609\\
18.9615 27.3684\\
309.19 6\\
27.3684 2.45576\\
23.1579 2.13958\\
23.12 2.10526\\
23.1408 -2.10526\\
23.1579 -2.1209\\
27.3684 -2.44487\\
309.19 6\\
27.3684 19.3499\\
23.1579 19.0537\\
23.0409 18.9474\\
23.0601 14.7368\\
23.1579 14.6472\\
27.3684 14.3441\\
322.095 4\\
27.3684 2.24837\\
25.4937 2.10526\\
25.7043 -2.10526\\
27.3684 -2.23427\\
322.095 4\\
27.3684 19.1486\\
24.6516 18.9474\\
24.8622 14.7368\\
27.3684 14.5484\\
};
\end{axis}
\begin{axis}[%
width=0.329\figureWidth,
height=0.438\figureHeight,
at={(0.671\figureWidth,0\figureHeight)},
scale only axis,
point meta min=76.9048,
point meta max=322.095,
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-6.31579,
xmax=27.3684,
xlabel={$\text{\$v}_{\text{2d}}\text{\$}$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-6.31579,
ymax=27.3684,
ylabel={$\text{\$v}_{\text{2q}}\text{\$}$},
axis background/.style={fill=white},
colorbar
]
\addplot[contour prepared, contour prepared format=matlab, contour/labels=false] table[row sep=crcr] {%
%
76.9048 2\\
-6.23574 27.3684\\
-6.31579 26.3358\\
76.9048 4\\
10.6673 27.3684\\
10.5263 25.4937\\
6.31579 25.7043\\
6.18875 27.3684\\
76.9048 3\\
27.3684 24.6516\\
23.1579 24.8622\\
22.9722 27.3684\\
89.8095 4\\
27.3684 23.0431\\
23.1579 23.0619\\
23.0698 23.1579\\
22.771 27.3684\\
89.8095 2\\
-6.02514 27.3684\\
-6.31579 23.619\\
89.8095 6\\
10.8715 27.3684\\
10.56 23.1579\\
10.5263 23.1207\\
6.31579 23.1411\\
6.30044 23.1579\\
5.98137 27.3684\\
102.714 4\\
27.3684 22.788\\
23.1579 22.8044\\
22.8336 23.1579\\
22.5698 27.3684\\
102.714 3\\
-5.81454 27.3684\\
-6.10885 23.1579\\
-6.31579 22.9289\\
102.714 6\\
11.0758 27.3684\\
10.8005 23.1579\\
10.5263 22.8557\\
6.31579 22.8734\\
6.05568 23.1579\\
5.77398 27.3684\\
115.619 4\\
27.3684 22.5329\\
23.1579 22.5469\\
22.5974 23.1579\\
22.3685 27.3684\\
115.619 3\\
-5.60393 27.3684\\
-5.8596 23.1579\\
-6.31579 22.6531\\
115.619 6\\
11.2801 27.3684\\
11.0409 23.1579\\
10.5263 22.5906\\
6.31579 22.6058\\
5.81092 23.1579\\
5.56659 27.3684\\
115.619 7\\
2.23526 18.9474\\
2.10526 17.7644\\
-2.10526 17.9749\\
-2.21452 18.9474\\
-2.10526 19.0451\\
2.10526 19.0651\\
2.23526 18.9474\\
115.619 7\\
19.1605 18.9474\\
18.9474 16.9223\\
14.7368 17.1328\\
14.5417 18.9474\\
14.7368 19.1227\\
18.9474 19.1412\\
19.1605 18.9474\\
128.524 4\\
27.3684 22.2778\\
23.1579 22.2894\\
22.3611 23.1579\\
22.1673 27.3684\\
128.524 3\\
-5.39333 27.3684\\
-5.61036 23.1579\\
-6.31579 22.3773\\
128.524 6\\
11.4844 27.3684\\
11.2813 23.1579\\
10.5263 22.3256\\
6.31579 22.3381\\
5.56617 23.1579\\
5.3592 27.3684\\
128.524 9\\
19.0182 14.7368\\
18.9474 14.6545\\
14.7368 14.6863\\
14.6929 14.7368\\
14.2496 18.9474\\
14.7368 19.3852\\
18.9474 19.4011\\
19.4465 18.9474\\
19.0182 14.7368\\
128.524 7\\
2.53381 18.9474\\
2.10526 15.0476\\
-2.10526 15.2581\\
-2.51978 18.9474\\
-2.10526 19.3181\\
2.10526 19.3354\\
2.53381 18.9474\\
141.429 4\\
27.3684 22.0227\\
23.1579 22.0319\\
22.1249 23.1579\\
21.966 27.3684\\
141.429 3\\
-5.18272 27.3684\\
-5.36111 23.1579\\
-6.31579 22.1014\\
141.429 6\\
11.6886 27.3684\\
11.5217 23.1579\\
10.5263 22.0605\\
6.31579 22.0704\\
5.32141 23.1579\\
5.15181 27.3684\\
141.429 9\\
2.44414 14.7368\\
2.10526 14.3392\\
-2.10526 14.3679\\
-2.42345 14.7368\\
-2.82504 18.9474\\
-2.10526 19.5912\\
2.10526 19.6057\\
2.83236 18.9474\\
2.44414 14.7368\\
141.429 9\\
19.3805 14.7368\\
18.9474 14.2333\\
14.7368 14.2585\\
14.3207 14.7368\\
13.9575 18.9474\\
14.7368 19.6477\\
18.9474 19.6611\\
19.7325 18.9474\\
19.3805 14.7368\\
154.333 5\\
27.3684 8.35088\\
23.1579 8.5614\\
22.8006 10.5263\\
23.1579 10.8263\\
27.3684 10.8534\\
154.333 3\\
-6.31579 10.6103\\
-6.21554 10.5263\\
-6.31579 10.0351\\
154.333 4\\
27.3684 21.7676\\
23.1579 21.7743\\
21.8886 23.1579\\
21.7648 27.3684\\
154.333 3\\
-4.97212 27.3684\\
-5.11186 23.1579\\
-6.31579 21.8256\\
154.333 6\\
11.8929 27.3684\\
11.7621 23.1579\\
10.5263 21.7955\\
6.31579 21.8028\\
5.07666 23.1579\\
4.94442 27.3684\\
154.333 7\\
10.7779 10.5263\\
10.5263 9.19298\\
6.31579 9.40351\\
6.09563 10.5263\\
6.31579 10.7089\\
10.5263 10.7396\\
10.7779 10.5263\\
154.333 9\\
2.82679 14.7368\\
2.10526 13.8901\\
-2.10526 13.9112\\
-2.81719 14.7368\\
-3.1303 18.9474\\
-2.10526 19.8642\\
2.10526 19.8761\\
3.1309 18.9474\\
2.82679 14.7368\\
154.333 9\\
19.7427 14.7368\\
18.9474 13.812\\
14.7368 13.8306\\
13.9486 14.7368\\
13.6653 18.9474\\
14.7368 19.9102\\
18.9474 19.9211\\
20.0185 18.9474\\
19.7427 14.7368\\
167.238 6\\
27.3684 6.05854\\
23.1579 6.13101\\
23.0233 6.31579\\
22.3067 10.5263\\
23.1579 11.2411\\
27.3684 11.262\\
167.238 3\\
-6.31579 11.0747\\
-5.66109 10.5263\\
-6.31579 7.3183\\
167.238 4\\
27.3684 21.5125\\
23.1579 21.5168\\
21.6524 23.1579\\
21.5635 27.3684\\
167.238 3\\
-4.76152 27.3684\\
-4.86262 23.1579\\
-6.31579 21.5498\\
167.238 6\\
12.0972 27.3684\\
12.0026 23.1579\\
10.5263 21.5304\\
6.31579 21.5351\\
4.8319 23.1579\\
4.73703 27.3684\\
167.238 7\\
11.2905 10.5263\\
10.5263 6.47619\\
6.31579 6.68672\\
5.56293 10.5263\\
6.31579 11.1506\\
10.5263 11.1743\\
11.2905 10.5263\\
167.238 9\\
3.20943 14.7368\\
2.10526 13.441\\
-2.10526 13.4546\\
-3.21093 14.7368\\
-3.43556 18.9474\\
-2.10526 20.1373\\
2.10526 20.1464\\
3.42945 18.9474\\
3.20943 14.7368\\
167.238 9\\
20.1049 14.7368\\
18.9474 13.3908\\
14.7368 13.4028\\
13.5764 14.7368\\
13.3732 18.9474\\
14.7368 20.1727\\
18.9474 20.1811\\
20.3044 18.9474\\
20.1049 14.7368\\
180.143 4\\
-2.79408 -6.31579\\
-2.10526 -5.27416\\
2.10526 -5.32871\\
2.76899 -6.31579\\
180.143 4\\
14.2579 -6.31579\\
14.7368 -5.53201\\
18.9474 -5.61727\\
19.3805 -6.31579\\
180.143 6\\
27.3684 5.03334\\
23.1579 5.06561\\
22.247 6.31579\\
21.8127 10.5263\\
23.1579 11.6559\\
27.3684 11.6705\\
180.143 4\\
-6.31579 11.5391\\
-5.10664 10.5263\\
-5.72466 6.31579\\
-6.31579 5.38915\\
180.143 4\\
27.3684 21.2574\\
23.1579 21.2593\\
21.4161 23.1579\\
21.3623 27.3684\\
180.143 3\\
-4.55091 27.3684\\
-4.61337 23.1579\\
-6.31579 21.274\\
180.143 6\\
12.3014 27.3684\\
12.243 23.1579\\
10.5263 21.2654\\
6.31579 21.2675\\
4.58714 23.1579\\
4.52964 27.3684\\
180.143 9\\
11.301 6.31579\\
10.5263 5.17962\\
6.31579 5.22469\\
5.55906 6.31579\\
5.03022 10.5263\\
6.31579 11.5924\\
10.5263 11.609\\
11.8031 10.5263\\
11.301 6.31579\\
180.143 9\\
3.59208 14.7368\\
2.10526 12.992\\
-2.10526 12.998\\
-3.60466 14.7368\\
-3.74081 18.9474\\
-2.10526 20.4103\\
2.10526 20.4167\\
3.728 18.9474\\
3.59208 14.7368\\
180.143 9\\
20.4672 14.7368\\
18.9474 12.9696\\
14.7368 12.975\\
13.2042 14.7368\\
13.0811 18.9474\\
14.7368 20.4351\\
18.9474 20.4411\\
20.5904 18.9474\\
20.4672 14.7368\\
193.048 4\\
-3.67047 -6.31579\\
-2.10526 -3.9489\\
2.10526 -3.93548\\
3.70582 -6.31579\\
193.048 4\\
13.2516 -6.31579\\
14.7368 -3.88547\\
18.9474 -3.8645\\
20.4672 -6.31579\\
193.048 3\\
-6.31579 -1.25313\\
-5.54113 -2.10526\\
-6.31579 -2.5016\\
193.048 6\\
27.3684 4.00813\\
23.1579 4.0002\\
21.4708 6.31579\\
21.3188 10.5263\\
23.1579 12.0706\\
27.3684 12.0791\\
193.048 4\\
-6.31579 12.0035\\
-4.5522 10.5263\\
-4.78783 6.31579\\
-6.31579 3.92061\\
193.048 4\\
27.3684 21.0023\\
23.1579 21.0018\\
21.1799 23.1579\\
21.1611 27.3684\\
193.048 3\\
-4.34031 27.3684\\
-4.36412 23.1579\\
-6.31579 20.9982\\
193.048 6\\
12.5057 27.3684\\
12.4834 23.1579\\
10.5263 21.0003\\
6.31579 20.9998\\
4.34239 23.1579\\
4.32226 27.3684\\
193.048 7\\
10.5406 -2.10526\\
10.5263 -2.11099\\
6.31579 -2.22448\\
6.07073 -2.10526\\
6.31579 -1.88471\\
10.5263 -2.09524\\
10.5406 -2.10526\\
193.048 7\\
2.68854 2.10526\\
2.10526 1.46366\\
-2.10526 1.67419\\
-2.58424 2.10526\\
-2.10526 2.32633\\
2.10526 2.41824\\
2.68854 2.10526\\
193.048 7\\
19.9365 2.10526\\
18.9474 0.621554\\
14.7368 0.83208\\
13.7575 2.10526\\
14.7368 2.64704\\
18.9474 2.71086\\
19.9365 2.10526\\
193.048 9\\
12.1243 6.31579\\
10.5263 3.97215\\
6.31579 3.96107\\
4.68267 6.31579\\
4.49752 10.5263\\
6.31579 12.0342\\
10.5263 12.0437\\
12.3157 10.5263\\
12.1243 6.31579\\
193.048 9\\
3.97473 14.7368\\
2.10526 12.5429\\
-2.10526 12.5414\\
-3.9984 14.7368\\
-4.04607 18.9474\\
-2.10526 20.6834\\
2.10526 20.687\\
4.02655 18.9474\\
3.97473 14.7368\\
193.048 9\\
20.8294 14.7368\\
18.9474 12.5484\\
14.7368 12.5471\\
12.8321 14.7368\\
12.789 18.9474\\
14.7368 20.6976\\
18.9474 20.701\\
20.8764 18.9474\\
20.8294 14.7368\\
205.952 2\\
-4.54685 -6.31579\\
-6.31579 -3.76523\\
205.952 4\\
12.2454 -6.31579\\
10.5263 -3.66344\\
6.31579 -3.69302\\
4.64264 -6.31579\\
205.952 3\\
27.3684 -3.50135\\
23.1579 -3.55026\\
21.5539 -6.31579\\
205.952 3\\
-6.31579 1.46366\\
-5.6029 2.10526\\
-6.31579 2.45208\\
205.952 5\\
27.3684 2.98293\\
23.1579 2.93479\\
21.7477 2.10526\\
23.1579 -0.0100251\\
27.3684 -0.220551\\
205.952 4\\
-6.31579 12.4679\\
-4.39214 14.7368\\
-4.35133 18.9474\\
-6.31579 20.7224\\
205.952 6\\
27.3684 20.7472\\
23.1579 20.7443\\
21.1624 18.9474\\
21.1916 14.7368\\
23.1579 12.4854\\
27.3684 12.4876\\
205.952 6\\
-4.1297 27.3684\\
-4.11487 23.1579\\
-2.10526 20.9564\\
2.10526 20.9574\\
4.09763 23.1579\\
4.11487 27.3684\\
205.952 6\\
12.71 27.3684\\
12.7238 23.1579\\
14.7368 20.9601\\
18.9474 20.961\\
20.9437 23.1579\\
20.9598 27.3684\\
205.952 7\\
-3.07131 -2.10526\\
-2.10526 -2.62363\\
2.10526 -2.54225\\
3.05207 -2.10526\\
2.10526 -1.25313\\
-2.10526 -1.04261\\
-3.07131 -2.10526\\
205.952 7\\
14.4218 -2.10526\\
14.7368 -2.23893\\
18.9474 -2.11173\\
18.9674 -2.10526\\
18.9474 -2.09524\\
14.7368 -1.88471\\
14.4218 -2.10526\\
205.952 7\\
5.15835 2.10526\\
6.31579 0.83208\\
10.5263 0.621554\\
11.6676 2.10526\\
10.5263 2.76469\\
6.31579 2.69744\\
5.15835 2.10526\\
205.952 9\\
-3.85101 6.31579\\
-2.10526 3.71956\\
2.10526 3.74351\\
3.80629 6.31579\\
3.96481 10.5263\\
2.10526 12.0939\\
-2.10526 12.0848\\
-3.99775 10.5263\\
-3.85101 6.31579\\
205.952 9\\
12.9475 6.31579\\
14.7368 3.80312\\
18.9474 3.81975\\
20.6946 6.31579\\
20.8248 10.5263\\
18.9474 12.1272\\
14.7368 12.1193\\
12.8283 10.5263\\
12.9475 6.31579\\
205.952 9\\
4.35737 14.7368\\
6.31579 12.4759\\
10.5263 12.4784\\
12.4599 14.7368\\
12.4968 18.9474\\
10.5263 20.7353\\
6.31579 20.7321\\
4.3251 18.9474\\
4.35737 14.7368\\
218.857 2\\
-5.42324 -6.31579\\
-6.31579 -5.02885\\
218.857 4\\
11.2392 -6.31579\\
10.5263 -5.2159\\
6.31579 -5.16155\\
5.57947 -6.31579\\
218.857 3\\
27.3684 -5.51378\\
23.1579 -5.4239\\
22.6406 -6.31579\\
218.857 4\\
-6.31579 12.9323\\
-4.78588 14.7368\\
-4.65659 18.9474\\
-6.31579 20.4465\\
218.857 6\\
27.3684 20.4921\\
23.1579 20.4868\\
21.4484 18.9474\\
21.5539 14.7368\\
23.1579 12.9002\\
27.3684 12.8962\\
218.857 6\\
-3.9191 27.3684\\
-3.86563 23.1579\\
-2.10526 21.2295\\
2.10526 21.2277\\
3.85288 23.1579\\
3.90748 27.3684\\
218.857 6\\
12.9142 27.3684\\
12.9643 23.1579\\
14.7368 21.2226\\
18.9474 21.221\\
20.7074 23.1579\\
20.7586 27.3684\\
218.857 9\\
-2.91418 6.31579\\
-2.10526 5.11278\\
2.10526 5.06877\\
2.92991 6.31579\\
3.43211 10.5263\\
2.10526 11.6448\\
-2.10526 11.6282\\
-3.4433 10.5263\\
-2.91418 6.31579\\
218.857 9\\
13.7708 6.31579\\
14.7368 4.95921\\
18.9474 4.92865\\
19.9184 6.31579\\
20.3308 10.5263\\
18.9474 11.706\\
14.7368 11.6914\\
13.3409 10.5263\\
13.7708 6.31579\\
218.857 9\\
4.74002 14.7368\\
6.31579 12.9177\\
10.5263 12.9131\\
12.0878 14.7368\\
12.2047 18.9474\\
10.5263 20.4702\\
6.31579 20.4645\\
4.62365 18.9474\\
4.74002 14.7368\\
231.762 2\\
-6.29962 -6.31579\\
-6.31579 -6.29248\\
231.762 4\\
-6.31579 13.3967\\
-5.17962 14.7368\\
-4.96184 18.9474\\
-6.31579 20.1707\\
231.762 6\\
27.3684 20.237\\
23.1579 20.2292\\
21.7343 18.9474\\
21.9161 14.7368\\
23.1579 13.315\\
27.3684 13.3047\\
231.762 6\\
-3.7085 27.3684\\
-3.61638 23.1579\\
-2.10526 21.5025\\
2.10526 21.498\\
3.60812 23.1579\\
3.70009 27.3684\\
231.762 6\\
13.1185 27.3684\\
13.2047 23.1579\\
14.7368 21.4851\\
18.9474 21.481\\
20.4712 23.1579\\
20.5573 27.3684\\
231.762 9\\
14.5941 6.31579\\
14.7368 6.11529\\
18.9474 6.03754\\
19.1421 6.31579\\
19.8369 10.5263\\
18.9474 11.2848\\
14.7368 11.2636\\
13.8535 10.5263\\
14.5941 6.31579\\
231.762 7\\
-2.88885 10.5263\\
-2.10526 6.68672\\
2.10526 6.47619\\
2.89941 10.5263\\
2.10526 11.1958\\
-2.10526 11.1716\\
-2.88885 10.5263\\
231.762 9\\
5.12267 14.7368\\
6.31579 13.3594\\
10.5263 13.3478\\
11.7156 14.7368\\
11.9126 18.9474\\
10.5263 20.2051\\
6.31579 20.1968\\
4.9222 18.9474\\
5.12267 14.7368\\
244.667 4\\
-6.31579 13.8611\\
-5.57335 14.7368\\
-5.2671 18.9474\\
-6.31579 19.8949\\
244.667 6\\
27.3684 19.9819\\
23.1579 19.9717\\
22.0203 18.9474\\
22.2784 14.7368\\
23.1579 13.7297\\
27.3684 13.7132\\
244.667 6\\
-3.49789 27.3684\\
-3.36713 23.1579\\
-2.10526 21.7755\\
2.10526 21.7684\\
3.36336 23.1579\\
3.4927 27.3684\\
244.667 6\\
13.3228 27.3684\\
13.4451 23.1579\\
14.7368 21.7476\\
18.9474 21.741\\
20.2349 23.1579\\
20.3561 27.3684\\
244.667 7\\
-2.33441 10.5263\\
-2.10526 9.40351\\
2.10526 9.19298\\
2.3667 10.5263\\
2.10526 10.7467\\
-2.10526 10.715\\
-2.33441 10.5263\\
244.667 7\\
14.3661 10.5263\\
14.7368 8.5614\\
18.9474 8.35088\\
19.3429 10.5263\\
18.9474 10.8636\\
14.7368 10.8358\\
14.3661 10.5263\\
244.667 9\\
5.50531 14.7368\\
6.31579 13.8012\\
10.5263 13.7825\\
11.3434 14.7368\\
11.6204 18.9474\\
10.5263 19.9401\\
6.31579 19.9291\\
5.22074 18.9474\\
5.50531 14.7368\\
257.571 4\\
-6.31579 14.3256\\
-5.96709 14.7368\\
-5.57236 18.9474\\
-6.31579 19.6191\\
257.571 6\\
27.3684 19.7268\\
23.1579 19.7142\\
22.3063 18.9474\\
22.6406 14.7368\\
23.1579 14.1445\\
27.3684 14.1218\\
257.571 6\\
-3.28729 27.3684\\
-3.11789 23.1579\\
-2.10526 22.0486\\
2.10526 22.0387\\
3.11861 23.1579\\
3.28531 27.3684\\
257.571 6\\
13.5271 27.3684\\
13.6855 23.1579\\
14.7368 22.0101\\
18.9474 22.0009\\
19.9987 23.1579\\
20.1548 27.3684\\
257.571 9\\
5.88796 14.7368\\
6.31579 14.2429\\
10.5263 14.2171\\
10.9713 14.7368\\
11.3283 18.9474\\
10.5263 19.675\\
6.31579 19.6615\\
5.51929 18.9474\\
5.88796 14.7368\\
270.476 3\\
-6.31579 15.0476\\
-5.87762 18.9474\\
-6.31579 19.3433\\
270.476 6\\
27.3684 19.4717\\
23.1579 19.4567\\
22.5923 18.9474\\
23.0028 14.7368\\
23.1579 14.5593\\
27.3684 14.5303\\
270.476 6\\
-3.07668 27.3684\\
-2.86864 23.1579\\
-2.10526 22.3216\\
2.10526 22.309\\
2.87385 23.1579\\
3.07792 27.3684\\
270.476 6\\
13.7313 27.3684\\
13.926 23.1579\\
14.7368 22.2726\\
18.9474 22.2609\\
19.7624 23.1579\\
19.9536 27.3684\\
270.476 9\\
6.27061 14.7368\\
6.31579 14.6847\\
10.5263 14.6518\\
10.5991 14.7368\\
11.0362 18.9474\\
10.5263 19.41\\
6.31579 19.3938\\
5.81784 18.9474\\
6.27061 14.7368\\
283.381 3\\
-6.31579 17.7644\\
-6.18287 18.9474\\
-6.31579 19.0675\\
283.381 5\\
27.3684 19.2166\\
23.1579 19.1992\\
22.8782 18.9474\\
23.1579 16.2907\\
27.3684 16.0802\\
283.381 6\\
-2.86608 27.3684\\
-2.61939 23.1579\\
-2.10526 22.5947\\
2.10526 22.5793\\
2.6291 23.1579\\
2.87054 27.3684\\
283.381 6\\
13.9356 27.3684\\
14.1664 23.1579\\
14.7368 22.5351\\
18.9474 22.5209\\
19.5262 23.1579\\
19.7523 27.3684\\
283.381 7\\
6.11639 18.9474\\
6.31579 17.1328\\
10.5263 16.9223\\
10.7441 18.9474\\
10.5263 19.1449\\
6.31579 19.1261\\
6.11639 18.9474\\
296.286 3\\
27.3684 18.9615\\
24.3609 18.9474\\
27.3684 18.797\\
296.286 6\\
-2.65548 27.3684\\
-2.37015 23.1579\\
-2.10526 22.8677\\
2.10526 22.8497\\
2.38434 23.1579\\
2.66315 27.3684\\
296.286 6\\
14.1399 27.3684\\
14.4068 23.1579\\
14.7368 22.7976\\
18.9474 22.7809\\
19.29 23.1579\\
19.5511 27.3684\\
309.19 6\\
-2.44487 27.3684\\
-2.1209 23.1579\\
-2.10526 23.1408\\
2.10526 23.12\\
2.13958 23.1579\\
2.45576 27.3684\\
309.19 6\\
14.3441 27.3684\\
14.6472 23.1579\\
14.7368 23.0601\\
18.9474 23.0409\\
19.0537 23.1579\\
19.3499 27.3684\\
322.095 4\\
-2.23427 27.3684\\
-2.10526 25.7043\\
2.10526 25.4937\\
2.24837 27.3684\\
322.095 4\\
14.5484 27.3684\\
14.7368 24.8622\\
18.9474 24.6516\\
19.1486 27.3684\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
\definecolor{mycolor3}{rgb}{0.92900,0.69400,0.12500}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-14.9991,
xmax=164.992,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-1.41569,
ymax=0.999422,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
150.732 0.00849907\\
156.837 -0.999856\\
87.7008 -0.0254948\\
6.88778 0.999422\\
-11.3032 0.0424831\\
49.8526 -0.9987\\
134.129 -0.0594591\\
164.042 0.997689\\
112.091 0.076418\\
26.0381 -0.99639\\
-14.9991 -0.0933548\\
26.7084 0.994804\\
112.815 0.110265\\
164.155 -0.992929\\
133.526 -0.127143\\
49.0887 0.990768\\
-11.5258 0.143984\\
7.41115 -0.988321\\
88.4889 -0.160783\\
157.165 0.985588\\
150.299 0.177537\\
74.2034 -0.98257\\
-1.15984 -0.194238\\
-6.50205 0.979268\\
63.0883 0.210884\\
143.63 -0.975683\\
161.074 -0.227469\\
99.3815 0.971817\\
15.273 0.243988\\
-13.9228 -0.96767\\
38.6366 -0.260437\\
124.628 0.963243\\
164.992 0.27681\\
122.617 -0.958537\\
36.4636 -0.293103\\
-14.2601 0.953555\\
17.0816 0.309312\\
101.673 -0.948297\\
161.742 -0.325431\\
142.06 0.942766\\
60.724 0.341457\\
-7.48694 -0.936962\\
0.140273 -0.357383\\
76.5932 0.930887\\
151.581 0.373207\\
156.161 -0.924543\\
86.1216 -0.388922\\
5.85708 0.917932\\
-10.8377 0.404525\\
51.3863 -0.911056\\
135.321 -0.420012\\
163.796 0.903916\\
110.633 0.435376\\
24.709 -0.896516\\
-14.978 -0.450616\\
28.0604 0.888856\\
114.255 0.465724\\
164.359 -0.88094\\
132.306 -0.480699\\
47.567 0.872769\\
-11.9506 0.495534\\
8.47374 -0.864345\\
90.062 -0.510226\\
157.802 0.855673\\
149.415 0.524771\\
72.6104 -0.846752\\
-1.9968 -0.539165\\
-5.81349 0.837588\\
64.6694 0.553402\\
144.65 -0.828181\\
160.595 -0.56748\\
97.8441 0.818535\\
14.0905 0.581393\\
-13.6632 -0.808652\\
40.0997 -0.595139\\
125.95 0.798536\\
164.957 0.608712\\
121.258 -0.788189\\
35.0299 -0.62211\\
-14.45 0.777614\\
18.3101 0.635328\\
103.191 -0.766815\\
162.153 -0.648363\\
140.987 0.755794\\
59.1532 0.66121\\
-8.11126 -0.744554\\
1.03639 -0.673866\\
78.1858 0.7331\\
152.406 0.686327\\
155.46 -0.721434\\
84.5389 -0.69859\\
4.84805 0.709559\\
-10.3454 0.710651\\
52.9273 -0.697479\\
136.494 -0.722507\\
163.523 0.685198\\
109.165 0.734154\\
23.3956 -0.672719\\
-14.9286 -0.745589\\
29.4271 0.660045\\
115.682 0.756809\\
164.534 -0.647181\\
131.069 -0.76781\\
46.054 0.634129\\
-12.3482 0.778589\\
9.55717 -0.620895\\
91.6304 -0.789143\\
158.414 0.607481\\
148.507 0.799469\\
71.0182 -0.593891\\
-2.80963 -0.809564\\
-5.0996 0.58013\\
66.2536 0.819425\\
145.648 -0.566202\\
160.089 -0.829049\\
96.2995 0.552109\\
12.9272 0.838434\\
-13.3757 -0.537857\\
41.5736 -0.847577\\
127.255 0.52345\\
164.893 0.856474\\
119.884 -0.508892\\
33.6087 -0.865125\\
-14.6118 0.494186\\
19.5564 0.873525\\
104.699 -0.479338\\
162.537 -0.881673\\
139.893 0.464351\\
57.5874 0.889566\\
-8.70954 -0.44923\\
1.9557 -0.897202\\
79.7775 0.433979\\
153.207 0.904579\\
154.733 -0.418603\\
82.9532 -0.911694\\
3.86101 0.403106\\
-9.8263 0.918546\\
54.4753 -0.387492\\
137.647 -0.925133\\
163.222 0.371767\\
107.685 0.931452\\
22.0984 -0.355934\\
-14.8511 -0.937502\\
30.8081 0.339998\\
117.097 0.943282\\
164.682 -0.323964\\
129.814 -0.948789\\
44.55 0.307836\\
-12.7184 0.954021\\
10.6611 -0.29162\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
-14.9991 -0.00108974\\
164.992 -0.00108974\\
};
\addplot [color=mycolor2,dashed,forget plot]
table[row sep=crcr]{%
-14.9991 0.706212\\
164.992 0.706212\\
};
\addplot [color=mycolor3,dashed,forget plot]
table[row sep=crcr]{%
-14.9991 -1.41569\\
164.992 -1.41569\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=0.877\figureHeight,
at={(0\figureWidth,0.123\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 100,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=7.46,
ymax=7.66,
axis background/.style={fill=white}
]
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
0 7.653\\
24 7.473\\
48 7.637\\
72 7.652\\
96 7.651\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.877\figureHeight,
at={(0\figureWidth,0.123\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=7.46,
ymax=7.66,
hide axis
]
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
0 7.653\\
1.1 7.64475\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.012\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
xminorticks=true,
xlabel={secondary axis},
every outer y axis line/.append style={white},
every y tick label/.append style={font=\color{white}},
ymin= 0,
ymax= 1,
ytick={\empty},
axis x line*=bottom,
axis y line*=left
]
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
xlabel={x},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
ylabel={y},
title style={font=\bfseries},
title={Title}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
1 1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmode=log,
xmin= 0.1,
xmax= 100,
xminorticks=true,
xmajorgrids,
xminorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymode=log,
ymin= 1,
ymax=1e+45,
yminorticks=true,
ymajorgrids,
yminorgrids,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
0.1 1.10517\\
0.11514 1.12203\\
0.132571 1.14176\\
0.152642 1.16491\\
0.175751 1.19214\\
0.202359 1.22429\\
0.232995 1.26238\\
0.26827 1.3077\\
0.308884 1.3619\\
0.355648 1.42711\\
0.409492 1.50605\\
0.471487 1.60237\\
0.542868 1.72093\\
0.625055 1.86835\\
0.719686 2.05379\\
0.828643 2.29021\\
0.954095 2.59632\\
1.09854 2.99979\\
1.26486 3.54258\\
1.45635 4.29026\\
1.67683 5.34859\\
1.9307 6.89432\\
2.223 9.23496\\
2.55955 12.93\\
2.94705 19.0497\\
3.39322 29.7617\\
3.90694 49.7465\\
4.49843 89.8762\\
5.17947 177.589\\
5.96362 389.017\\
6.86649 959.573\\
7.90604 2713.63\\
9.10298 8982.04\\
10.4811 35636.7\\
12.0679 174194\\
13.895 1.08269e+06\\
15.9986 8.87357e+06\\
18.4207 1.00002e+08\\
21.2095 1.6262e+09\\
24.4205 4.03368e+10\\
28.1177 1.62688e+12\\
32.3746 1.14842e+14\\
37.2759 1.54431e+16\\
42.9193 4.36148e+18\\
49.4171 2.8946e+21\\
56.8987 5.13776e+24\\
65.5129 2.83056e+28\\
75.4312 5.74585e+32\\
86.8511 5.23564e+37\\
100 2.68812e+43\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=3.799in,
height=3.566in,
at={(0.758in,0.481in)},
scale only axis,
point meta min=1,
point meta max=100,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=0.5,
xmax=3.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin=0.5,
ymax=1.5,
axis background/.style={fill=white},
colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},
colorbar,
colorbar style={separate axis lines,every outer x axis line/.append style={black},every x tick label/.append style={font=\color{black}},every outer y axis line/.append style={black},every y tick label/.append style={font=\color{black}},ymode=log,yminorticks=true}
]
\addplot [forget plot] graphics [xmin=0.5,xmax=3.5,ymin=0.5,ymax=1.5] {test17-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=\figureWidth,
height=0.931\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=6.28319,
xlabel={${\text{x-Values}}$},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.9,
ymax= 0.9,
ylabel={${\text{y-Values}}$},
ymajorgrids,
axis background/.style={fill=white},
title style={font=\bfseries},
title={${\text{tikz test}}$},
legend style={at={(0.5,1.03)},anchor=south,legend columns=2,legend cell align=left,align=left,draw=black}
]
\addplot [color=blue,solid]
table[row sep=crcr]{%
0 0\\
0.31 0.305059\\
0.48 0.461779\\
0.62 0.581035\\
0.74 0.674288\\
0.85 0.75128\\
0.96 0.819192\\
1.06 0.872355\\
1.15 0.912764\\
nan nan\\
1.96 0.925212\\
2.05 0.887362\\
2.15 0.836899\\
2.25 0.778073\\
2.36 0.704411\\
2.47 0.622234\\
2.6 0.515501\\
2.74 0.390885\\
2.91 0.229528\\
3.18 -0.0383979\\
3.46 -0.313054\\
3.62 -0.460366\\
3.76 -0.579738\\
3.88 -0.673111\\
3.99 -0.750228\\
4.1 -0.818277\\
4.2 -0.871576\\
4.3 -0.916166\\
nan nan\\
5.11 -0.921989\\
5.2 -0.883455\\
5.3 -0.832267\\
5.4 -0.772764\\
5.51 -0.698418\\
5.63 -0.607719\\
5.76 -0.499642\\
5.91 -0.364583\\
6.09 -0.191986\\
6.28 -0.0031853\\
};
\addlegendentry{sin(x)};
\addplot [color=red,solid]
table[row sep=crcr]{%
0.45 0.900447\\
0.54 0.857709\\
0.64 0.802096\\
0.74 0.738469\\
0.85 0.659983\\
0.97 0.5653\\
1.1 0.453596\\
1.26 0.305817\\
1.47 0.100626\\
1.91 -0.332736\\
2.07 -0.478727\\
2.21 -0.596557\\
2.33 -0.688344\\
2.44 -0.763815\\
2.54 -0.824435\\
2.64 -0.876818\\
2.73 -0.916485\\
nan nan\\
3.54 -0.92168\\
3.63 -0.883081\\
3.73 -0.831826\\
3.83 -0.772259\\
3.94 -0.697848\\
4.06 -0.607087\\
4.19 -0.498952\\
4.34 -0.363842\\
4.52 -0.191204\\
5.16 0.432813\\
5.3 0.554374\\
5.43 0.657587\\
5.54 0.736317\\
5.65 0.806147\\
5.75 0.861192\\
5.85 0.907633\\
};
\addlegendentry{cos(x)};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -4,
xmax= 4,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white},
legend style={legend cell align=left,align=left,fill=none,draw=none}
]
\addplot [color=red,solid,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
-3.14159 -1\\
-2.98451 -0.987688\\
-2.82743 -0.951057\\
-2.67035 -0.891007\\
-2.51327 -0.809017\\
-2.35619 -0.707107\\
-2.19911 -0.587785\\
-2.04204 -0.45399\\
-1.88496 -0.309017\\
-1.72788 -0.156434\\
-1.5708 6.12323e-17\\
-1.41372 0.156434\\
-1.25664 0.309017\\
-1.09956 0.45399\\
-0.942478 0.587785\\
-0.785398 0.707107\\
-0.628319 0.809017\\
-0.471239 0.891007\\
-0.314159 0.951057\\
-0.15708 0.987688\\
0 1\\
0.15708 0.987688\\
0.314159 0.951057\\
0.471239 0.891007\\
0.628319 0.809017\\
0.785398 0.707107\\
0.942478 0.587785\\
1.09956 0.45399\\
1.25664 0.309017\\
1.41372 0.156434\\
1.5708 6.12323e-17\\
1.72788 -0.156434\\
1.88496 -0.309017\\
2.04204 -0.45399\\
2.19911 -0.587785\\
2.35619 -0.707107\\
2.51327 -0.809017\\
2.67035 -0.891007\\
2.82743 -0.951057\\
2.98451 -0.987688\\
3.14159 -1\\
};
\addplot [color=blue,dashdotted]
table[row sep=crcr]{%
-3.14159 -1.22465e-16\\
-2.82743 -0.309017\\
-2.67035 -0.45399\\
-2.51327 -0.587785\\
-2.35619 -0.707107\\
-2.19911 -0.809017\\
-2.04204 -0.891007\\
-1.88496 -0.951057\\
-1.72788 -0.987688\\
-1.5708 -1\\
-1.41372 -0.987688\\
-1.25664 -0.951057\\
-1.09956 -0.891007\\
-0.942478 -0.809017\\
-0.785398 -0.707107\\
-0.628319 -0.587785\\
-0.471239 -0.45399\\
-0.314159 -0.309017\\
0 0\\
0.314159 0.309017\\
0.471239 0.45399\\
0.628319 0.587785\\
0.785398 0.707107\\
0.942478 0.809017\\
1.09956 0.891007\\
1.25664 0.951057\\
1.41372 0.987688\\
1.5708 1\\
1.72788 0.987688\\
1.88496 0.951057\\
2.04204 0.891007\\
2.19911 0.809017\\
2.35619 0.707107\\
2.51327 0.587785\\
2.67035 0.45399\\
2.82743 0.309017\\
3.14159 1.22465e-16\\
};
\addlegendentry{one pretty long legend sin\_x (dash-dot)};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=\figureWidth,
height=0.424\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=6.28319,
xminorticks=true,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -2,
ymax= 2,
ytick={\empty},
axis background/.style={fill=white}
]
\addplot[area legend,solid,draw=black,fill=gray,forget plot]
table[row sep=crcr] {%
x y\\
3.92699 2\\
3.92699 -1\\
4.71239 -1\\
4.71239 2\\
}--cycle;
\addplot[area legend,solid,draw=none,fill=white!80!black,forget plot]
table[row sep=crcr] {%
x y\\
0.785398 -2\\
0.785398 1\\
1.5708 1\\
1.5708 -2\\
}--cycle;
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
0 1\\
0.113097 0.993611\\
0.226195 0.974527\\
0.339292 0.942991\\
0.464956 0.893841\\
0.590619 0.830596\\
0.716283 0.754251\\
0.86708 0.647056\\
1.04301 0.503623\\
1.21894 0.344643\\
1.47027 0.100362\\
1.92265 -0.344643\\
2.12372 -0.525175\\
2.27451 -0.647056\\
2.42531 -0.754251\\
2.57611 -0.844328\\
2.7269 -0.915241\\
2.82743 -0.951057\\
2.92796 -0.977268\\
3.0285 -0.993611\\
3.12903 -0.999921\\
3.22956 -0.996134\\
3.33009 -0.982287\\
3.43062 -0.958522\\
3.53115 -0.925077\\
3.63168 -0.882291\\
3.78248 -0.801567\\
3.93327 -0.70265\\
4.08407 -0.587785\\
4.28513 -0.414376\\
4.53646 -0.175023\\
5.13965 0.414376\\
5.34071 0.587785\\
5.4915 0.70265\\
5.6423 0.801567\\
5.7931 0.882291\\
5.89363 0.925077\\
5.99416 0.958522\\
6.09469 0.982287\\
6.19522 0.996134\\
6.28319 1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 7,
every outer y axis line/.append style={mycolor1},
every y tick label/.append style={font=\color{mycolor1}},
ymin= -1,
ymax= 1,
ytick={ -1, -0.5, 0, 0.5, 1},
axis background/.style={fill=white},
legend style={legend cell align=left,align=left,draw=black}
]
\addplot [color=mycolor1,solid]
table[row sep=crcr]{%
0 0\\
0.3 0.29552\\
0.5 0.479426\\
0.6 0.564642\\
0.7 0.644218\\
0.8 0.717356\\
0.9 0.783327\\
1 0.841471\\
1.1 0.891207\\
1.2 0.932039\\
1.3 0.963558\\
1.4 0.98545\\
1.5 0.997495\\
1.6 0.999574\\
1.7 0.991665\\
1.8 0.973848\\
1.9 0.9463\\
2 0.909297\\
2.1 0.863209\\
2.2 0.808496\\
2.3 0.745705\\
2.4 0.675463\\
2.5 0.598472\\
2.7 0.42738\\
2.9 0.239249\\
3.6 -0.44252\\
3.8 -0.611858\\
3.9 -0.687766\\
4 -0.756802\\
4.1 -0.818277\\
4.2 -0.871576\\
4.3 -0.916166\\
4.4 -0.951602\\
4.5 -0.97753\\
4.6 -0.993691\\
4.7 -0.999923\\
4.8 -0.996165\\
4.9 -0.982453\\
5 -0.958924\\
5.1 -0.925815\\
5.2 -0.883455\\
5.3 -0.832267\\
5.4 -0.772764\\
5.5 -0.70554\\
5.6 -0.631267\\
5.7 -0.550686\\
5.9 -0.373877\\
6.1 -0.182163\\
6.6 0.311541\\
6.8 0.494113\\
6.9 0.57844\\
7 0.656987\\
};
\addlegendentry{Sine};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 7,
every outer y axis line/.append style={mycolor2},
every y tick label/.append style={font=\color{mycolor2}},
ymin= -1,
ymax= 1,
ytick={ -1, -0.5, 0, 0.5, 1},
axis x line*=bottom,
axis y line*=right
]
\addplot [color=mycolor2,solid]
table[row sep=crcr]{%
0 1\\
0.1 0.995004\\
0.2 0.980067\\
0.3 0.955336\\
0.4 0.921061\\
0.5 0.877583\\
0.6 0.825336\\
0.7 0.764842\\
0.8 0.696707\\
0.9 0.62161\\
1 0.540302\\
1.2 0.362358\\
1.4 0.169967\\
1.9 -0.32329\\
2.1 -0.504846\\
2.2 -0.588501\\
2.3 -0.666276\\
2.4 -0.737394\\
2.5 -0.801144\\
2.6 -0.856889\\
2.7 -0.904072\\
2.8 -0.942222\\
2.9 -0.970958\\
3 -0.989992\\
3.1 -0.999135\\
3.2 -0.998295\\
3.3 -0.98748\\
3.4 -0.966798\\
3.5 -0.936457\\
3.6 -0.896758\\
3.7 -0.8481\\
3.8 -0.790968\\
3.9 -0.725932\\
4 -0.653644\\
4.1 -0.574824\\
4.3 -0.400799\\
4.5 -0.210796\\
5.1 0.377978\\
5.3 0.554374\\
5.4 0.634693\\
5.5 0.70867\\
5.6 0.775566\\
5.7 0.834713\\
5.8 0.88552\\
5.9 0.927478\\
6 0.96017\\
6.1 0.983268\\
6.2 0.996542\\
6.3 0.999859\\
6.4 0.993185\\
6.5 0.976588\\
6.6 0.950233\\
6.7 0.914383\\
6.8 0.869397\\
6.9 0.815725\\
7 0.753902\\
};
\addlegendentry{Cosine};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{1.00000,0.00000,1.00000}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=0.265\figureHeight,
at={(0\figureWidth,0.735\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 15,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 10,
axis background/.style={fill=white},
title style={font=\bfseries},
title={setup},
legend style={legend cell align=left,align=left,draw=black}
]
\addplot [color=red,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
1 10\\
2 9\\
3 8\\
4 7\\
5 6\\
6 5\\
7 4\\
8 3\\
9 2\\
10 1\\
};
\addlegendentry{cross with points};
\addplot [color=green,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
1 9\\
2 9\\
3 9\\
4 9\\
5 9\\
6 9\\
7 9\\
8 9\\
9 9\\
10 9\\
11 9\\
12 9\\
13 9\\
14 9\\
15 9\\
};
\addlegendentry{no cross};
\addplot [color=blue,solid,mark=asterisk,mark options={solid}]
table[row sep=crcr]{%
5.5 1\\
5.5 9\\
};
\addlegendentry{cross no points};
\addplot[const plot,color=mycolor1,solid,mark=asterisk,mark options={solid}] plot table[row sep=crcr] {%
1 1\\
2 2\\
3 3\\
4 4\\
5 5\\
6 6\\
7 7\\
8 8\\
9 9\\
10 10\\
};
\addlegendentry{stairs};
\addplot [color=black,dashed]
table[row sep=crcr]{%
2 2\\
8.5 2\\
8.5 7.5\\
2 7.5\\
2 2\\
};
\addlegendentry{zoom area};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.265\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 15,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 10,
axis background/.style={fill=white},
title style={font=\bfseries},
title={zoom in, cleanfigure, zoom out}
]
\addplot [color=red,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
3 8\\
4 7\\
5 6\\
6 5\\
7 4\\
8 3\\
9 2\\
};
\addplot [color=green,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
1 9\\
2 9\\
3 9\\
4 9\\
5 9\\
6 9\\
7 9\\
8 9\\
9 9\\
10 9\\
};
\addplot [color=blue,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
5.5 1.45\\
nan nan\\
5.5 8.05\\
};
\addplot[const plot,color=mycolor1,solid,mark=asterisk,mark options={solid},forget plot] plot table[row sep=crcr] {%
1 1\\
2 2\\
3 3\\
4 4\\
5 5\\
6 6\\
7 7\\
8 8\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
2 2\\
8.5 2\\
8.5 7.5\\
2 7.5\\
2 2\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.265\figureHeight,
at={(0\figureWidth,0.368\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 2,
xmax= 8.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 2,
ymax= 7.5,
axis background/.style={fill=white},
title style={font=\bfseries},
title={zoom in}
]
\addplot [color=red,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
3 8\\
4 7\\
5 6\\
6 5\\
7 4\\
8 3\\
9 2\\
};
\addplot [color=green,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
1 9\\
2 9\\
3 9\\
4 9\\
5 9\\
6 9\\
7 9\\
8 9\\
9 9\\
10 9\\
};
\addplot [color=blue,solid,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
5.5 1.45\\
nan nan\\
5.5 8.05\\
};
\addplot[const plot,color=mycolor1,solid,mark=asterisk,mark options={solid},forget plot] plot table[row sep=crcr] {%
1 1\\
2 2\\
3 3\\
4 4\\
5 5\\
6 6\\
7 7\\
8 8\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax=0.45,
axis background/.style={fill=white}
]
\addplot[-Straight Barb,color=mycolor1,solid,point meta={sqrt((\thisrow{u})^2+(\thisrow{v})^2)},quiver={u=\thisrow{u},v=\thisrow{v},every arrow/.append style={-{Straight Barb[scale length={max(0.01,\pgfplotspointmetatransformed/1000)},scale width={0.5*max(0.01,\pgfplotspointmetatransformed/1000)}]}}}]
table[row sep=crcr] {%
x y u v\\
0 0 0.45 0.45\\
1 0 -0.45 0.45\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-2.04272,
xmax= 2,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-2.0111,
ymax=2.0111,
axis background/.style={fill=white}
]
\addplot[contour prepared, contour prepared format=matlab, contour/labels=false] table[row sep=crcr] {%
%
-0.4 11\\
-0.594131 -0.2\\
-0.6 -0.20964\\
-0.8 -0.223101\\
-0.820423 -0.2\\
-0.880935 0\\
-0.820423 0.2\\
-0.8 0.223101\\
-0.6 0.20964\\
-0.594131 0.2\\
-0.552138 0\\
-0.594131 -0.2\\
-0.3 19\\
-0.4288 -0.4\\
-0.6 -0.575414\\
-0.8 -0.582515\\
-1 -0.447465\\
-1.03788 -0.4\\
-1.13315 -0.2\\
-1.16246 0\\
-1.13315 0.2\\
-1.03788 0.4\\
-1 0.447465\\
-0.8 0.582515\\
-0.6 0.575414\\
-0.4288 0.4\\
-0.4 0.348476\\
-0.361514 0.2\\
-0.345047 0\\
-0.361514 -0.2\\
-0.4 -0.348476\\
-0.4288 -0.4\\
-0.2 29\\
-0.49888 -0.8\\
-0.6 -0.862123\\
-0.8 -0.86671\\
-0.95768 -0.8\\
-1 -0.780792\\
-1.19437 -0.6\\
-1.2 -0.592525\\
-1.3139 -0.4\\
-1.37484 -0.2\\
-1.39358 0\\
-1.37484 0.2\\
-1.3139 0.4\\
-1.2 0.592525\\
-1.19437 0.6\\
-1 0.780792\\
-0.95768 0.8\\
-0.8 0.86671\\
-0.6 0.862123\\
-0.49888 0.8\\
-0.4 0.730201\\
-0.327113 0.6\\
-0.257222 0.4\\
-0.221526 0.2\\
-0.210548 0\\
-0.221526 -0.2\\
-0.257222 -0.4\\
-0.327113 -0.6\\
-0.4 -0.730201\\
-0.49888 -0.8\\
-0.1 39\\
-0.307156 -1\\
-0.4 -1.11379\\
-0.6 -1.19701\\
-0.8 -1.1998\\
-1 -1.1467\\
-1.2 -1.02467\\
-1.22866 -1\\
-1.4 -0.82534\\
-1.42055 -0.8\\
-1.54655 -0.6\\
-1.6 -0.456524\\
-1.62382 -0.4\\
-1.67372 -0.2\\
-1.68906 0\\
-1.67372 0.2\\
-1.62382 0.4\\
-1.6 0.456524\\
-1.54655 0.6\\
-1.42055 0.8\\
-1.4 0.82534\\
-1.22866 1\\
-1.2 1.02467\\
-1 1.1467\\
-0.8 1.1998\\
-0.6 1.19701\\
-0.4 1.11379\\
-0.307156 1\\
-0.2 0.80864\\
-0.197388 0.8\\
-0.149182 0.6\\
-0.12214 0.4\\
-0.108329 0.2\\
-0.104081 0\\
-0.108329 -0.2\\
-0.12214 -0.4\\
-0.149182 -0.6\\
-0.197388 -0.8\\
-0.2 -0.80864\\
-0.307156 -1\\
0 21\\
0 2\\
0 1.8\\
0 1.6\\
0 1.4\\
0 1.2\\
0 1\\
0 0.8\\
0 0.6\\
0 0.4\\
0 0.2\\
0 0\\
0 -0.2\\
0 -0.4\\
0 -0.6\\
0 -0.8\\
0 -1\\
0 -1.2\\
0 -1.4\\
0 -1.6\\
0 -1.8\\
0 -2\\
0.1 39\\
0.307156 -1\\
0.4 -1.11379\\
0.6 -1.19701\\
0.8 -1.1998\\
1 -1.1467\\
1.2 -1.02467\\
1.22866 -1\\
1.4 -0.82534\\
1.42055 -0.8\\
1.54655 -0.6\\
1.6 -0.456524\\
1.62382 -0.4\\
1.67372 -0.2\\
1.68906 0\\
1.67372 0.2\\
1.62382 0.4\\
1.6 0.456524\\
1.54655 0.6\\
1.42055 0.8\\
1.4 0.82534\\
1.22866 1\\
1.2 1.02467\\
1 1.1467\\
0.8 1.1998\\
0.6 1.19701\\
0.4 1.11379\\
0.307156 1\\
0.2 0.80864\\
0.197388 0.8\\
0.149182 0.6\\
0.12214 0.4\\
0.108329 0.2\\
0.104081 0\\
0.108329 -0.2\\
0.12214 -0.4\\
0.149182 -0.6\\
0.197388 -0.8\\
0.2 -0.80864\\
0.307156 -1\\
0.2 29\\
0.49888 -0.8\\
0.6 -0.862123\\
0.8 -0.86671\\
0.95768 -0.8\\
1 -0.780792\\
1.19437 -0.6\\
1.2 -0.592525\\
1.3139 -0.4\\
1.37484 -0.2\\
1.39358 0\\
1.37484 0.2\\
1.3139 0.4\\
1.2 0.592525\\
1.19437 0.6\\
1 0.780792\\
0.95768 0.8\\
0.8 0.86671\\
0.6 0.862123\\
0.49888 0.8\\
0.4 0.730201\\
0.327113 0.6\\
0.257222 0.4\\
0.221526 0.2\\
0.210548 0\\
0.221526 -0.2\\
0.257222 -0.4\\
0.327113 -0.6\\
0.4 -0.730201\\
0.49888 -0.8\\
0.3 19\\
0.4288 -0.4\\
0.6 -0.575414\\
0.8 -0.582515\\
1 -0.447465\\
1.03788 -0.4\\
1.13315 -0.2\\
1.16246 0\\
1.13315 0.2\\
1.03788 0.4\\
1 0.447465\\
0.8 0.582515\\
0.6 0.575414\\
0.4288 0.4\\
0.4 0.348476\\
0.361514 0.2\\
0.345047 0\\
0.361514 -0.2\\
0.4 -0.348476\\
0.4288 -0.4\\
0.4 11\\
0.594131 -0.2\\
0.6 -0.20964\\
0.8 -0.223101\\
0.820423 -0.2\\
0.880935 0\\
0.820423 0.2\\
0.8 0.223101\\
0.6 0.20964\\
0.594131 0.2\\
0.552138 0\\
0.594131 -0.2\\
};
\addplot[-Straight Barb,color=mycolor1,solid,point meta={sqrt((\thisrow{u})^2+(\thisrow{v})^2)},quiver={u=\thisrow{u},v=\thisrow{v},every arrow/.append style={-{Straight Barb[scale length={max(0.01,\pgfplotspointmetatransformed/1000)},scale width={0.5*max(0.01,\pgfplotspointmetatransformed/1000)}]}}}]
table[row sep=crcr] {%
x y u v\\
-2 -2 -0.000782523 -0.000963522\\
-2 -1.8 -0.00167325 -0.00136312\\
-2 -1.6 -0.00330279 -0.00234996\\
-2 -1.4 -0.00601808 -0.00368857\\
-2 -1.2 -0.0101226 -0.005246\\
-2 -1 -0.0157174 -0.00670974\\
-2 -0.8 -0.0225282 -0.00762094\\
-2 -0.6 -0.0298077 -0.00750666\\
-2 -0.4 -0.0364072 -0.00608001\\
-2 -0.2 -0.041049 -0.00341666\\
-2 0 -0.0427243 0\\
-2 0.2 -0.041049 0.00341666\\
-2 0.4 -0.0364072 0.00608001\\
-2 0.6 -0.0298077 0.00750666\\
-2 0.8 -0.0225282 0.00762094\\
-2 1 -0.0157174 0.00670974\\
-2 1.2 -0.0101226 0.005246\\
-2 1.4 -0.00601808 0.00368857\\
-2 1.6 -0.00330279 0.00234996\\
-2 1.8 -0.00167325 0.00136312\\
-2 2 -0.000782523 0.000963522\\
-1.8 -2 -0.00100585 -0.00185425\\
-1.8 -1.8 -0.00215078 -0.00262325\\
-1.8 -1.6 -0.00424538 -0.00452237\\
-1.8 -1.4 -0.00773558 -0.00709846\\
-1.8 -1.2 -0.0130115 -0.0100957\\
-1.8 -1 -0.020203 -0.0129126\\
-1.8 -0.8 -0.0289575 -0.0146661\\
-1.8 -0.6 -0.0383146 -0.0144462\\
-1.8 -0.4 -0.0467975 -0.0117007\\
-1.8 -0.2 -0.0527641 -0.00657518\\
-1.8 0 -0.0549174 0\\
-1.8 0.2 -0.0527641 0.00657518\\
-1.8 0.4 -0.0467975 0.0117007\\
-1.8 0.6 -0.0383146 0.0144462\\
-1.8 0.8 -0.0289575 0.0146661\\
-1.8 1 -0.020203 0.0129126\\
-1.8 1.2 -0.0130115 0.0100957\\
-1.8 1.4 -0.00773558 0.00709846\\
-1.8 1.6 -0.00424538 0.00452237\\
-1.8 1.8 -0.00215078 0.00262325\\
-1.8 2 -0.00100585 0.00185425\\
-1.6 -2 -0.00146397 -0.00325339\\
-1.6 -1.8 -0.00313037 -0.00460265\\
-1.6 -1.6 -0.00617897 -0.00793476\\
-1.6 -1.4 -0.0112588 -0.0124547\\
-1.6 -1.2 -0.0189376 -0.0177134\\
-1.6 -1 -0.0294046 -0.0226558\\
-1.6 -0.8 -0.0421465 -0.0257325\\
-1.6 -0.6 -0.0557653 -0.0253467\\
-1.6 -0.4 -0.0681119 -0.0205295\\
-1.6 -0.2 -0.0767959 -0.0115365\\
-1.6 0 -0.07993 0\\
-1.6 0.2 -0.0767959 0.0115365\\
-1.6 0.4 -0.0681119 0.0205295\\
-1.6 0.6 -0.0557653 0.0253467\\
-1.6 0.8 -0.0421465 0.0257325\\
-1.6 1 -0.0294046 0.0226558\\
-1.6 1.2 -0.0189376 0.0177134\\
-1.6 1.4 -0.0112588 0.0124547\\
-1.6 1.6 -0.00617897 0.00793476\\
-1.6 1.8 -0.00313037 0.00460265\\
-1.6 2 -0.00146397 0.00325339\\
-1.4 -2 -0.00185587 -0.00518705\\
-1.4 -1.8 -0.00396836 -0.00733825\\
-1.4 -1.6 -0.00783306 -0.0126508\\
-1.4 -1.4 -0.0142728 -0.0198571\\
-1.4 -1.2 -0.0240072 -0.0282414\\
-1.4 -1 -0.0372761 -0.0361214\\
-1.4 -0.8 -0.0534289 -0.0410268\\
-1.4 -0.6 -0.0706934 -0.0404116\\
-1.4 -0.4 -0.0863452 -0.0327313\\
-1.4 -0.2 -0.0973539 -0.0183933\\
-1.4 0 -0.101327 0\\
-1.4 0.2 -0.0973539 0.0183933\\
-1.4 0.4 -0.0863452 0.0327313\\
-1.4 0.6 -0.0706934 0.0404116\\
-1.4 0.8 -0.0534289 0.0410268\\
-1.4 1 -0.0372761 0.0361214\\
-1.4 1.2 -0.0240072 0.0282414\\
-1.4 1.4 -0.0142728 0.0198571\\
-1.4 1.6 -0.00783306 0.0126508\\
-1.4 1.8 -0.00396836 0.00733825\\
-1.4 2 -0.00185587 0.00518705\\
-1.2 -2 -0.00197201 -0.00747837\\
-1.2 -1.8 -0.0042167 -0.0105798\\
-1.2 -1.6 -0.00832325 -0.0182392\\
-1.2 -1.4 -0.0151659 -0.0286288\\
-1.2 -1.2 -0.0255095 -0.0407168\\
-1.2 -1 -0.0396088 -0.0520776\\
-1.2 -0.8 -0.0567725 -0.0591499\\
-1.2 -0.6 -0.0751174 -0.0582629\\
-1.2 -0.4 -0.0917486 -0.04719\\
-1.2 -0.2 -0.103446 -0.0265184\\
-1.2 0 -0.107668 0\\
-1.2 0.2 -0.103446 0.0265184\\
-1.2 0.4 -0.0917486 0.04719\\
-1.2 0.6 -0.0751174 0.0582629\\
-1.2 0.8 -0.0567725 0.0591499\\
-1.2 1 -0.0396088 0.0520776\\
-1.2 1.2 -0.0255095 0.0407168\\
-1.2 1.4 -0.0151659 0.0286288\\
-1.2 1.6 -0.00832325 0.0182392\\
-1.2 1.8 -0.0042167 0.0105798\\
-1.2 2 -0.00197201 0.00747837\\
-1 -2 -0.00158891 -0.00967643\\
-1 -1.8 -0.00339753 -0.0136895\\
-1 -1.6 -0.00670632 -0.0236001\\
-1 -1.4 -0.0122197 -0.0370434\\
-1 -1.2 -0.0205539 -0.0526843\\
-1 -1 -0.0319142 -0.0673844\\
-1 -0.8 -0.0457435 -0.0765353\\
-1 -0.6 -0.0605246 -0.0753877\\
-1 -0.4 -0.0739249 -0.0610602\\
-1 -0.2 -0.0833501 -0.0343127\\
-1 0 -0.0867517 0\\
-1 0.2 -0.0833501 0.0343127\\
-1 0.4 -0.0739249 0.0610602\\
-1 0.6 -0.0605246 0.0753877\\
-1 0.8 -0.0457435 0.0765353\\
-1 1 -0.0319142 0.0673844\\
-1 1.2 -0.0205539 0.0526843\\
-1 1.4 -0.0122197 0.0370434\\
-1 1.6 -0.00670632 0.0236001\\
-1 1.8 -0.00339753 0.0136895\\
-1 2 -0.00158891 0.00967643\\
-0.8 -2 -0.000586092 -0.0110956\\
-0.8 -1.8 -0.00125323 -0.0156972\\
-0.8 -1.6 -0.00247372 -0.0270613\\
-0.8 -1.4 -0.0045074 -0.0424763\\
-0.8 -1.2 -0.00758158 -0.0604112\\
-0.8 -1 -0.011772 -0.0772672\\
-0.8 -0.8 -0.0168731 -0.0877603\\
-0.8 -0.6 -0.0223253 -0.0864443\\
-0.8 -0.4 -0.0272682 -0.0700155\\
-0.8 -0.2 -0.0307448 -0.0393451\\
-0.8 0 -0.0319995 0\\
-0.8 0.2 -0.0307448 0.0393451\\
-0.8 0.4 -0.0272682 0.0700155\\
-0.8 0.6 -0.0223253 0.0864443\\
-0.8 0.8 -0.0168731 0.0877603\\
-0.8 1 -0.011772 0.0772672\\
-0.8 1.2 -0.00758158 0.0604112\\
-0.8 1.4 -0.0045074 0.0424763\\
-0.8 1.6 -0.00247372 0.0270613\\
-0.8 1.8 -0.00125323 0.0156972\\
-0.8 2 -0.000586092 0.0110956\\
-0.6 -2 0.000935601 -0.0110107\\
-0.6 -1.8 0.00200057 -0.0155771\\
-0.6 -1.6 0.00394889 -0.0268542\\
-0.6 -1.4 0.00719534 -0.0421513\\
-0.6 -1.2 0.0121028 -0.0599489\\
-0.6 -1 0.018792 -0.0766759\\
-0.6 -0.8 0.0269352 -0.0870887\\
-0.6 -0.6 0.0356388 -0.0857827\\
-0.6 -0.4 0.0435293 -0.0694797\\
-0.6 -0.2 0.0490791 -0.039044\\
-0.6 0 0.0510821 0\\
-0.6 0.2 0.0490791 0.039044\\
-0.6 0.4 0.0435293 0.0694797\\
-0.6 0.6 0.0356388 0.0857827\\
-0.6 0.8 0.0269352 0.0870887\\
-0.6 1 0.018792 0.0766759\\
-0.6 1.2 0.0121028 0.0599489\\
-0.6 1.4 0.00719534 0.0421513\\
-0.6 1.6 0.00394889 0.0268542\\
-0.6 1.8 0.00200057 0.0155771\\
-0.6 2 0.000935601 0.0110107\\
-0.4 -2 0.00261638 -0.00896567\\
-0.4 -1.8 0.00559454 -0.012684\\
-0.4 -1.6 0.0110429 -0.0218666\\
-0.4 -1.4 0.0201215 -0.0343225\\
-0.4 -1.2 0.033845 -0.0488145\\
-0.4 -1 0.0525513 -0.0624348\\
-0.4 -0.8 0.0753234 -0.0709136\\
-0.4 -0.6 0.0996626 -0.0698502\\
-0.4 -0.4 0.121728 -0.0565751\\
-0.4 -0.2 0.137248 -0.0317923\\
-0.4 0 0.142849 0\\
-0.4 0.2 0.137248 0.0317923\\
-0.4 0.4 0.121728 0.0565751\\
-0.4 0.6 0.0996626 0.0698502\\
-0.4 0.8 0.0753234 0.0709136\\
-0.4 1 0.0525513 0.0624348\\
-0.4 1.2 0.033845 0.0488145\\
-0.4 1.4 0.0201215 0.0343225\\
-0.4 1.6 0.0110429 0.0218666\\
-0.4 1.8 0.00559454 0.012684\\
-0.4 2 0.00261638 0.00896567\\
-0.2 -2 0.00393827 -0.00505438\\
-0.2 -1.8 0.0084211 -0.00715056\\
-0.2 -1.6 0.0166222 -0.0123272\\
-0.2 -1.4 0.0302877 -0.0193492\\
-0.2 -1.2 0.0509447 -0.0275191\\
-0.2 -1 0.0791022 -0.0351975\\
-0.2 -0.8 0.113379 -0.0399774\\
-0.2 -0.6 0.150016 -0.0393779\\
-0.2 -0.4 0.18323 -0.0318941\\
-0.2 -0.2 0.206591 -0.0179229\\
-0.2 0 0.215022 0\\
-0.2 0.2 0.206591 0.0179229\\
-0.2 0.4 0.18323 0.0318941\\
-0.2 0.6 0.150016 0.0393779\\
-0.2 0.8 0.113379 0.0399774\\
-0.2 1 0.0791022 0.0351975\\
-0.2 1.2 0.0509447 0.0275191\\
-0.2 1.4 0.0302877 0.0193492\\
-0.2 1.6 0.0166222 0.0123272\\
-0.2 1.8 0.0084211 0.00715056\\
-0.2 2 0.00393827 0.00505438\\
0 -2 0.00444038 0\\
0 -1.8 0.00949476 0\\
0 -1.6 0.0187415 0\\
0 -1.4 0.0341492 0\\
0 -1.2 0.05744 0\\
0 -1 0.0891874 0\\
0 -0.8 0.127835 0\\
0 -0.6 0.169142 0\\
0 -0.4 0.206591 0\\
0 -0.2 0.232931 0\\
0 0 0.242437 0\\
0 0.2 0.232931 0\\
0 0.4 0.206591 0\\
0 0.6 0.169142 0\\
0 0.8 0.127835 0\\
0 1 0.0891874 0\\
0 1.2 0.05744 0\\
0 1.4 0.0341492 0\\
0 1.6 0.0187415 0\\
0 1.8 0.00949476 0\\
0 2 0.00444038 0\\
0.2 -2 0.00393827 0.00505438\\
0.2 -1.8 0.0084211 0.00715056\\
0.2 -1.6 0.0166222 0.0123272\\
0.2 -1.4 0.0302877 0.0193492\\
0.2 -1.2 0.0509447 0.0275191\\
0.2 -1 0.0791022 0.0351975\\
0.2 -0.8 0.113379 0.0399774\\
0.2 -0.6 0.150016 0.0393779\\
0.2 -0.4 0.18323 0.0318941\\
0.2 -0.2 0.206591 0.0179229\\
0.2 0 0.215022 0\\
0.2 0.2 0.206591 -0.0179229\\
0.2 0.4 0.18323 -0.0318941\\
0.2 0.6 0.150016 -0.0393779\\
0.2 0.8 0.113379 -0.0399774\\
0.2 1 0.0791022 -0.0351975\\
0.2 1.2 0.0509447 -0.0275191\\
0.2 1.4 0.0302877 -0.0193492\\
0.2 1.6 0.0166222 -0.0123272\\
0.2 1.8 0.0084211 -0.00715056\\
0.2 2 0.00393827 -0.00505438\\
0.4 -2 0.00261638 0.00896567\\
0.4 -1.8 0.00559454 0.012684\\
0.4 -1.6 0.0110429 0.0218666\\
0.4 -1.4 0.0201215 0.0343225\\
0.4 -1.2 0.033845 0.0488145\\
0.4 -1 0.0525513 0.0624348\\
0.4 -0.8 0.0753234 0.0709136\\
0.4 -0.6 0.0996626 0.0698502\\
0.4 -0.4 0.121728 0.0565751\\
0.4 -0.2 0.137248 0.0317923\\
0.4 0 0.142849 0\\
0.4 0.2 0.137248 -0.0317923\\
0.4 0.4 0.121728 -0.0565751\\
0.4 0.6 0.0996626 -0.0698502\\
0.4 0.8 0.0753234 -0.0709136\\
0.4 1 0.0525513 -0.0624348\\
0.4 1.2 0.033845 -0.0488145\\
0.4 1.4 0.0201215 -0.0343225\\
0.4 1.6 0.0110429 -0.0218666\\
0.4 1.8 0.00559454 -0.012684\\
0.4 2 0.00261638 -0.00896567\\
0.6 -2 0.000935601 0.0110107\\
0.6 -1.8 0.00200057 0.0155771\\
0.6 -1.6 0.00394889 0.0268542\\
0.6 -1.4 0.00719534 0.0421513\\
0.6 -1.2 0.0121028 0.0599489\\
0.6 -1 0.018792 0.0766759\\
0.6 -0.8 0.0269352 0.0870887\\
0.6 -0.6 0.0356388 0.0857827\\
0.6 -0.4 0.0435293 0.0694797\\
0.6 -0.2 0.0490791 0.039044\\
0.6 0 0.0510821 0\\
0.6 0.2 0.0490791 -0.039044\\
0.6 0.4 0.0435293 -0.0694797\\
0.6 0.6 0.0356388 -0.0857827\\
0.6 0.8 0.0269352 -0.0870887\\
0.6 1 0.018792 -0.0766759\\
0.6 1.2 0.0121028 -0.0599489\\
0.6 1.4 0.00719534 -0.0421513\\
0.6 1.6 0.00394889 -0.0268542\\
0.6 1.8 0.00200057 -0.0155771\\
0.6 2 0.000935601 -0.0110107\\
0.8 -2 -0.000586092 0.0110956\\
0.8 -1.8 -0.00125323 0.0156972\\
0.8 -1.6 -0.00247372 0.0270613\\
0.8 -1.4 -0.0045074 0.0424763\\
0.8 -1.2 -0.00758158 0.0604112\\
0.8 -1 -0.011772 0.0772672\\
0.8 -0.8 -0.0168731 0.0877603\\
0.8 -0.6 -0.0223253 0.0864443\\
0.8 -0.4 -0.0272682 0.0700155\\
0.8 -0.2 -0.0307448 0.0393451\\
0.8 0 -0.0319995 0\\
0.8 0.2 -0.0307448 -0.0393451\\
0.8 0.4 -0.0272682 -0.0700155\\
0.8 0.6 -0.0223253 -0.0864443\\
0.8 0.8 -0.0168731 -0.0877603\\
0.8 1 -0.011772 -0.0772672\\
0.8 1.2 -0.00758158 -0.0604112\\
0.8 1.4 -0.0045074 -0.0424763\\
0.8 1.6 -0.00247372 -0.0270613\\
0.8 1.8 -0.00125323 -0.0156972\\
0.8 2 -0.000586092 -0.0110956\\
1 -2 -0.00158891 0.00967643\\
1 -1.8 -0.00339753 0.0136895\\
1 -1.6 -0.00670632 0.0236001\\
1 -1.4 -0.0122197 0.0370434\\
1 -1.2 -0.0205539 0.0526843\\
1 -1 -0.0319142 0.0673844\\
1 -0.8 -0.0457435 0.0765353\\
1 -0.6 -0.0605246 0.0753877\\
1 -0.4 -0.0739249 0.0610602\\
1 -0.2 -0.0833501 0.0343127\\
1 0 -0.0867517 0\\
1 0.2 -0.0833501 -0.0343127\\
1 0.4 -0.0739249 -0.0610602\\
1 0.6 -0.0605246 -0.0753877\\
1 0.8 -0.0457435 -0.0765353\\
1 1 -0.0319142 -0.0673844\\
1 1.2 -0.0205539 -0.0526843\\
1 1.4 -0.0122197 -0.0370434\\
1 1.6 -0.00670632 -0.0236001\\
1 1.8 -0.00339753 -0.0136895\\
1 2 -0.00158891 -0.00967643\\
1.2 -2 -0.00197201 0.00747837\\
1.2 -1.8 -0.0042167 0.0105798\\
1.2 -1.6 -0.00832325 0.0182392\\
1.2 -1.4 -0.0151659 0.0286288\\
1.2 -1.2 -0.0255095 0.0407168\\
1.2 -1 -0.0396088 0.0520776\\
1.2 -0.8 -0.0567725 0.0591499\\
1.2 -0.6 -0.0751174 0.0582629\\
1.2 -0.4 -0.0917486 0.04719\\
1.2 -0.2 -0.103446 0.0265184\\
1.2 0 -0.107668 0\\
1.2 0.2 -0.103446 -0.0265184\\
1.2 0.4 -0.0917486 -0.04719\\
1.2 0.6 -0.0751174 -0.0582629\\
1.2 0.8 -0.0567725 -0.0591499\\
1.2 1 -0.0396088 -0.0520776\\
1.2 1.2 -0.0255095 -0.0407168\\
1.2 1.4 -0.0151659 -0.0286288\\
1.2 1.6 -0.00832325 -0.0182392\\
1.2 1.8 -0.0042167 -0.0105798\\
1.2 2 -0.00197201 -0.00747837\\
1.4 -2 -0.00185587 0.00518705\\
1.4 -1.8 -0.00396836 0.00733825\\
1.4 -1.6 -0.00783306 0.0126508\\
1.4 -1.4 -0.0142728 0.0198571\\
1.4 -1.2 -0.0240072 0.0282414\\
1.4 -1 -0.0372761 0.0361214\\
1.4 -0.8 -0.0534289 0.0410268\\
1.4 -0.6 -0.0706934 0.0404116\\
1.4 -0.4 -0.0863452 0.0327313\\
1.4 -0.2 -0.0973539 0.0183933\\
1.4 0 -0.101327 0\\
1.4 0.2 -0.0973539 -0.0183933\\
1.4 0.4 -0.0863452 -0.0327313\\
1.4 0.6 -0.0706934 -0.0404116\\
1.4 0.8 -0.0534289 -0.0410268\\
1.4 1 -0.0372761 -0.0361214\\
1.4 1.2 -0.0240072 -0.0282414\\
1.4 1.4 -0.0142728 -0.0198571\\
1.4 1.6 -0.00783306 -0.0126508\\
1.4 1.8 -0.00396836 -0.00733825\\
1.4 2 -0.00185587 -0.00518705\\
1.6 -2 -0.00146397 0.00325339\\
1.6 -1.8 -0.00313037 0.00460265\\
1.6 -1.6 -0.00617897 0.00793476\\
1.6 -1.4 -0.0112588 0.0124547\\
1.6 -1.2 -0.0189376 0.0177134\\
1.6 -1 -0.0294046 0.0226558\\
1.6 -0.8 -0.0421465 0.0257325\\
1.6 -0.6 -0.0557653 0.0253467\\
1.6 -0.4 -0.0681119 0.0205295\\
1.6 -0.2 -0.0767959 0.0115365\\
1.6 0 -0.07993 0\\
1.6 0.2 -0.0767959 -0.0115365\\
1.6 0.4 -0.0681119 -0.0205295\\
1.6 0.6 -0.0557653 -0.0253467\\
1.6 0.8 -0.0421465 -0.0257325\\
1.6 1 -0.0294046 -0.0226558\\
1.6 1.2 -0.0189376 -0.0177134\\
1.6 1.4 -0.0112588 -0.0124547\\
1.6 1.6 -0.00617897 -0.00793476\\
1.6 1.8 -0.00313037 -0.00460265\\
1.6 2 -0.00146397 -0.00325339\\
1.8 -2 -0.00100585 0.00185425\\
1.8 -1.8 -0.00215078 0.00262325\\
1.8 -1.6 -0.00424538 0.00452237\\
1.8 -1.4 -0.00773558 0.00709846\\
1.8 -1.2 -0.0130115 0.0100957\\
1.8 -1 -0.020203 0.0129126\\
1.8 -0.8 -0.0289575 0.0146661\\
1.8 -0.6 -0.0383146 0.0144462\\
1.8 -0.4 -0.0467975 0.0117007\\
1.8 -0.2 -0.0527641 0.00657518\\
1.8 0 -0.0549174 0\\
1.8 0.2 -0.0527641 -0.00657518\\
1.8 0.4 -0.0467975 -0.0117007\\
1.8 0.6 -0.0383146 -0.0144462\\
1.8 0.8 -0.0289575 -0.0146661\\
1.8 1 -0.020203 -0.0129126\\
1.8 1.2 -0.0130115 -0.0100957\\
1.8 1.4 -0.00773558 -0.00709846\\
1.8 1.6 -0.00424538 -0.00452237\\
1.8 1.8 -0.00215078 -0.00262325\\
1.8 2 -0.00100585 -0.00185425\\
2 -2 -0.000782523 0.000963522\\
2 -1.8 -0.00167325 0.00136312\\
2 -1.6 -0.00330279 0.00234996\\
2 -1.4 -0.00601808 0.00368857\\
2 -1.2 -0.0101226 0.005246\\
2 -1 -0.0157174 0.00670974\\
2 -0.8 -0.0225282 0.00762094\\
2 -0.6 -0.0298077 0.00750666\\
2 -0.4 -0.0364072 0.00608001\\
2 -0.2 -0.041049 0.00341666\\
2 0 -0.0427243 0\\
2 0.2 -0.041049 -0.00341666\\
2 0.4 -0.0364072 -0.00608001\\
2 0.6 -0.0298077 -0.00750666\\
2 0.8 -0.0225282 -0.00762094\\
2 1 -0.0157174 -0.00670974\\
2 1.2 -0.0101226 -0.005246\\
2 1.4 -0.00601808 -0.00368857\\
2 1.6 -0.00330279 -0.00234996\\
2 1.8 -0.00167325 -0.00136312\\
2 2 -0.000782523 -0.000963522\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 2.5,
tick align=outside,
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 3.5,
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -10,
zmax= 2,
zmajorgrids,
view={ 70}{ 18},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[-Straight Barb,color=mycolor1,solid,point meta={sqrt((\thisrow{u})^2+(\thisrow{v})^2+(\thisrow{w})^2)},quiver={u=\thisrow{u},v=\thisrow{v},w=\thisrow{w},every arrow/.append style={-{Straight Barb[scale length={max(0.01,\pgfplotspointmetatransformed/1000)},scale width={0.5*max(0.01,\pgfplotspointmetatransformed/1000)}]}}}]
table[row sep=crcr] {%
x y z u v w\\
0 0 0 0.2 0.3 0.84\\
0.2 0.3 0.84 0.2 0.3 0.68\\
0.4 0.6 1.36 0.2 0.3 0.36\\
0.6 0.9 1.56 0.2 0.3 0.04\\
0.8 1.2 1.44 0.2 0.3 -0.28\\
1 1.5 1 0.2 0.3 -0.6\\
1.2 1.8 0.24 0.2 0.3 -0.92\\
1.4 2.1 -0.84 0.2 0.3 -1.24\\
1.6 2.4 -2.24 0.2 0.3 -1.56\\
1.8 2.7 -3.96 0.2 0.3 -1.88\\
2 3 -6 0.2 0.3 -2.04\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0.5,
xmax=10.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 0.5,
ymax=10.5,
axis background/.style={fill=white}
]
\addplot [forget plot] graphics [xmin= 0.5,xmax=10.5,ymin= 0.5,ymax=10.5] {test25-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-0.025,
xmax=1.025,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin=-0.05,
ymax=1.05,
axis background/.style={fill=white}
]
\addplot [forget plot] graphics [xmin=-0.025,xmax=1.025,ymin=-0.05,ymax=1.05] {test26-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -3,
xmax= 2,
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 12,
ymax= 15,
ymajorgrids,
axis background/.style={fill=white}
]
\addplot [forget plot] graphics [xmin=-5.5,xmax= 4.5,ymin= 9.5,ymax=19.5] {test27-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 40,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white},
legend style={legend cell align=left,align=left,draw=black}
]
\addplot[const plot,color=mycolor1,solid,forget plot] plot table[row sep=crcr] {%
1 2.44929e-16\\
2 0.316668\\
3 0.600742\\
4 0.822984\\
5 0.960518\\
6 0.999189\\
7 0.935016\\
8 0.774605\\
9 0.534466\\
10 0.239316\\
11 -0.0804666\\
12 -0.391967\\
13 -0.663123\\
14 -0.866025\\
15 -0.979791\\
16 -0.992709\\
17 -0.90345\\
18 -0.721202\\
19 -0.464723\\
20 -0.160411\\
21 0.160411\\
22 0.464723\\
23 0.721202\\
24 0.90345\\
25 0.992709\\
26 0.979791\\
27 0.866025\\
28 0.663123\\
29 0.391967\\
30 0.0804666\\
31 -0.239316\\
32 -0.534466\\
33 -0.774605\\
34 -0.935016\\
35 -0.999189\\
36 -0.960518\\
37 -0.822984\\
38 -0.600742\\
39 -0.316668\\
40 -2.44929e-16\\
};
\addplot[const plot,color=mycolor2,solid] plot table[row sep=crcr] {%
1 0.2\\
2 0.189707\\
3 0.159889\\
4 0.113613\\
5 0.0556435\\
6 -0.00805319\\
7 -0.070921\\
8 -0.126489\\
9 -0.169038\\
10 -0.194188\\
11 -0.199351\\
12 -0.183996\\
13 -0.149702\\
14 -0.1\\
15 -0.0400051\\
16 0.0241073\\
17 0.0857385\\
18 0.138545\\
19 0.177091\\
20 0.19741\\
21 0.19741\\
22 0.177091\\
23 0.138545\\
24 0.0857385\\
25 0.0241073\\
26 -0.0400051\\
27 -0.1\\
28 -0.149702\\
29 -0.183996\\
30 -0.199351\\
31 -0.194188\\
32 -0.169038\\
33 -0.126489\\
34 -0.070921\\
35 -0.00805319\\
36 0.0556435\\
37 0.113613\\
38 0.159889\\
39 0.189707\\
40 0.2\\
};
\addlegendentry{second entry};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.652\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
clip=false,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-0.5,
xmax= 0.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.575,
ymax=0.575,
hide axis,
axis x line*=bottom,
axis y line*=left
]
\addplot[area legend,solid,draw=white!83!darkgray,fill=white,forget plot]
table[row sep=crcr] {%
x y\\
0.5 0\\
0.499013 0.0313953\\
0.496057 0.0626666\\
0.491144 0.0936907\\
0.484292 0.124345\\
0.475528 0.154508\\
0.464888 0.184062\\
0.452414 0.21289\\
0.438153 0.240877\\
0.422164 0.267913\\
0.404508 0.293893\\
0.385257 0.318712\\
0.364484 0.342274\\
0.342274 0.364484\\
0.318712 0.385257\\
0.293893 0.404508\\
0.267913 0.422164\\
0.240877 0.438153\\
0.21289 0.452414\\
0.184062 0.464888\\
0.154508 0.475528\\
0.124345 0.484292\\
0.0936907 0.491144\\
0.0626666 0.496057\\
0.0313953 0.499013\\
0 0.5\\
-0.0313953 0.499013\\
-0.0626666 0.496057\\
-0.0936907 0.491144\\
-0.124345 0.484292\\
-0.154508 0.475528\\
-0.184062 0.464888\\
-0.21289 0.452414\\
-0.240877 0.438153\\
-0.267913 0.422164\\
-0.293893 0.404508\\
-0.318712 0.385257\\
-0.342274 0.364484\\
-0.364484 0.342274\\
-0.385257 0.318712\\
-0.404508 0.293893\\
-0.422164 0.267913\\
-0.438153 0.240877\\
-0.452414 0.21289\\
-0.464888 0.184062\\
-0.475528 0.154508\\
-0.484292 0.124345\\
-0.491144 0.0936907\\
-0.496057 0.0626666\\
-0.499013 0.0313953\\
-0.5 0\\
-0.499013 -0.0313953\\
-0.496057 -0.0626666\\
-0.491144 -0.0936907\\
-0.484292 -0.124345\\
-0.475528 -0.154508\\
-0.464888 -0.184062\\
-0.452414 -0.21289\\
-0.438153 -0.240877\\
-0.422164 -0.267913\\
-0.404508 -0.293893\\
-0.385257 -0.318712\\
-0.364484 -0.342274\\
-0.342274 -0.364484\\
-0.318712 -0.385257\\
-0.293893 -0.404508\\
-0.267913 -0.422164\\
-0.240877 -0.438153\\
-0.21289 -0.452414\\
-0.184062 -0.464888\\
-0.154508 -0.475528\\
-0.124345 -0.484292\\
-0.0936907 -0.491144\\
-0.0626666 -0.496057\\
-0.0313953 -0.499013\\
0 -0.5\\
0.0313953 -0.499013\\
0.0626666 -0.496057\\
0.0936907 -0.491144\\
0.124345 -0.484292\\
0.154508 -0.475528\\
0.184062 -0.464888\\
0.21289 -0.452414\\
0.240877 -0.438153\\
0.267913 -0.422164\\
0.293893 -0.404508\\
0.318712 -0.385257\\
0.342274 -0.364484\\
0.364484 -0.342274\\
0.385257 -0.318712\\
0.404508 -0.293893\\
0.422164 -0.267913\\
0.438153 -0.240877\\
0.452414 -0.21289\\
0.464888 -0.184062\\
0.475528 -0.154508\\
0.484292 -0.124345\\
0.491144 -0.0936907\\
0.496057 -0.0626666\\
0.499013 -0.0313953\\
0.5 0\\
}--cycle;
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.1 0\\
0.0992115 0.0125333\\
0.0968583 0.024869\\
0.0929776 0.0368125\\
0.0876307 0.0481754\\
0.0809017 0.0587785\\
0.0728969 0.0684547\\
0.0637424 0.0770513\\
0.0535827 0.0844328\\
0.0425779 0.0904827\\
0.0309017 0.0951057\\
0.0187381 0.0982287\\
0.00627905 0.0998027\\
-0.00627905 0.0998027\\
-0.0187381 0.0982287\\
-0.0309017 0.0951057\\
-0.0425779 0.0904827\\
-0.0535827 0.0844328\\
-0.0637424 0.0770513\\
-0.0728969 0.0684547\\
-0.0809017 0.0587785\\
-0.0876307 0.0481754\\
-0.0929776 0.0368125\\
-0.0968583 0.024869\\
-0.0992115 0.0125333\\
-0.1 0\\
-0.0992115 -0.0125333\\
-0.0968583 -0.024869\\
-0.0929776 -0.0368125\\
-0.0876307 -0.0481754\\
-0.0809017 -0.0587785\\
-0.0728969 -0.0684547\\
-0.0637424 -0.0770513\\
-0.0535827 -0.0844328\\
-0.0425779 -0.0904827\\
-0.0309017 -0.0951057\\
-0.0187381 -0.0982287\\
-0.00627905 -0.0998027\\
0.00627905 -0.0998027\\
0.0187381 -0.0982287\\
0.0309017 -0.0951057\\
0.0425779 -0.0904827\\
0.0535827 -0.0844328\\
0.0637424 -0.0770513\\
0.0728969 -0.0684547\\
0.0809017 -0.0587785\\
0.0876307 -0.0481754\\
0.0929776 -0.0368125\\
0.0968583 -0.024869\\
0.0992115 -0.0125333\\
0.1 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.015,0.104) { 0.1};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.2 0\\
0.198423 0.0250666\\
0.193717 0.049738\\
0.185955 0.0736249\\
0.175261 0.0963507\\
0.161803 0.117557\\
0.145794 0.136909\\
0.127485 0.154103\\
0.107165 0.168866\\
0.0851559 0.180965\\
0.0618034 0.190211\\
0.0374763 0.196457\\
0.0125581 0.199605\\
-0.0125581 0.199605\\
-0.0374763 0.196457\\
-0.0618034 0.190211\\
-0.0851559 0.180965\\
-0.107165 0.168866\\
-0.127485 0.154103\\
-0.145794 0.136909\\
-0.161803 0.117557\\
-0.175261 0.0963507\\
-0.185955 0.0736249\\
-0.193717 0.049738\\
-0.198423 0.0250666\\
-0.2 0\\
-0.198423 -0.0250666\\
-0.193717 -0.049738\\
-0.185955 -0.0736249\\
-0.175261 -0.0963507\\
-0.161803 -0.117557\\
-0.145794 -0.136909\\
-0.127485 -0.154103\\
-0.107165 -0.168866\\
-0.0851559 -0.180965\\
-0.0618034 -0.190211\\
-0.0374763 -0.196457\\
-0.0125581 -0.199605\\
0.0125581 -0.199605\\
0.0374763 -0.196457\\
0.0618034 -0.190211\\
0.0851559 -0.180965\\
0.107165 -0.168866\\
0.127485 -0.154103\\
0.145794 -0.136909\\
0.161803 -0.117557\\
0.175261 -0.0963507\\
0.185955 -0.0736249\\
0.193717 -0.049738\\
0.198423 -0.0250666\\
0.2 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.029,0.203) { 0.2};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.3 0\\
0.299408 0.0188372\\
0.297634 0.0376\\
0.294686 0.0562144\\
0.290575 0.074607\\
0.285317 0.0927051\\
0.278933 0.110437\\
0.271448 0.127734\\
0.262892 0.144526\\
0.253298 0.160748\\
0.242705 0.176336\\
0.231154 0.191227\\
0.218691 0.205364\\
0.205364 0.218691\\
0.191227 0.231154\\
0.176336 0.242705\\
0.160748 0.253298\\
0.144526 0.262892\\
0.127734 0.271448\\
0.110437 0.278933\\
0.0927051 0.285317\\
0.074607 0.290575\\
0.0562144 0.294686\\
0.0376 0.297634\\
0.0188372 0.299408\\
0 0.3\\
-0.0188372 0.299408\\
-0.0376 0.297634\\
-0.0562144 0.294686\\
-0.074607 0.290575\\
-0.0927051 0.285317\\
-0.110437 0.278933\\
-0.127734 0.271448\\
-0.144526 0.262892\\
-0.160748 0.253298\\
-0.176336 0.242705\\
-0.191227 0.231154\\
-0.205364 0.218691\\
-0.218691 0.205364\\
-0.231154 0.191227\\
-0.242705 0.176336\\
-0.253298 0.160748\\
-0.262892 0.144526\\
-0.271448 0.127734\\
-0.278933 0.110437\\
-0.285317 0.0927051\\
-0.290575 0.074607\\
-0.294686 0.0562144\\
-0.297634 0.0376\\
-0.299408 0.0188372\\
-0.3 0\\
-0.299408 -0.0188372\\
-0.297634 -0.0376\\
-0.294686 -0.0562144\\
-0.290575 -0.074607\\
-0.285317 -0.0927051\\
-0.278933 -0.110437\\
-0.271448 -0.127734\\
-0.262892 -0.144526\\
-0.253298 -0.160748\\
-0.242705 -0.176336\\
-0.231154 -0.191227\\
-0.218691 -0.205364\\
-0.205364 -0.218691\\
-0.191227 -0.231154\\
-0.176336 -0.242705\\
-0.160748 -0.253298\\
-0.144526 -0.262892\\
-0.127734 -0.271448\\
-0.110437 -0.278933\\
-0.0927051 -0.285317\\
-0.074607 -0.290575\\
-0.0562144 -0.294686\\
-0.0376 -0.297634\\
-0.0188372 -0.299408\\
0 -0.3\\
0.0188372 -0.299408\\
0.0376 -0.297634\\
0.0562144 -0.294686\\
0.074607 -0.290575\\
0.0927051 -0.285317\\
0.110437 -0.278933\\
0.127734 -0.271448\\
0.144526 -0.262892\\
0.160748 -0.253298\\
0.176336 -0.242705\\
0.191227 -0.231154\\
0.205364 -0.218691\\
0.218691 -0.205364\\
0.231154 -0.191227\\
0.242705 -0.176336\\
0.253298 -0.160748\\
0.262892 -0.144526\\
0.271448 -0.127734\\
0.278933 -0.110437\\
0.285317 -0.0927051\\
0.290575 -0.074607\\
0.294686 -0.0562144\\
0.297634 -0.0376\\
0.299408 -0.0188372\\
0.3 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.042,0.302) { 0.3};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.4 0\\
0.399211 0.0251162\\
0.396846 0.0501333\\
0.392915 0.0749525\\
0.387433 0.099476\\
0.380423 0.123607\\
0.371911 0.14725\\
0.361931 0.170312\\
0.350523 0.192701\\
0.337731 0.214331\\
0.323607 0.235114\\
0.308205 0.25497\\
0.291587 0.273819\\
0.273819 0.291587\\
0.25497 0.308205\\
0.235114 0.323607\\
0.214331 0.337731\\
0.192701 0.350523\\
0.170312 0.361931\\
0.14725 0.371911\\
0.123607 0.380423\\
0.099476 0.387433\\
0.0749525 0.392915\\
0.0501333 0.396846\\
0.0251162 0.399211\\
0 0.4\\
-0.0251162 0.399211\\
-0.0501333 0.396846\\
-0.0749525 0.392915\\
-0.099476 0.387433\\
-0.123607 0.380423\\
-0.14725 0.371911\\
-0.170312 0.361931\\
-0.192701 0.350523\\
-0.214331 0.337731\\
-0.235114 0.323607\\
-0.25497 0.308205\\
-0.273819 0.291587\\
-0.291587 0.273819\\
-0.308205 0.25497\\
-0.323607 0.235114\\
-0.337731 0.214331\\
-0.350523 0.192701\\
-0.361931 0.170312\\
-0.371911 0.14725\\
-0.380423 0.123607\\
-0.387433 0.099476\\
-0.392915 0.0749525\\
-0.396846 0.0501333\\
-0.399211 0.0251162\\
-0.4 0\\
-0.399211 -0.0251162\\
-0.396846 -0.0501333\\
-0.392915 -0.0749525\\
-0.387433 -0.099476\\
-0.380423 -0.123607\\
-0.371911 -0.14725\\
-0.361931 -0.170312\\
-0.350523 -0.192701\\
-0.337731 -0.214331\\
-0.323607 -0.235114\\
-0.308205 -0.25497\\
-0.291587 -0.273819\\
-0.273819 -0.291587\\
-0.25497 -0.308205\\
-0.235114 -0.323607\\
-0.214331 -0.337731\\
-0.192701 -0.350523\\
-0.170312 -0.361931\\
-0.14725 -0.371911\\
-0.123607 -0.380423\\
-0.099476 -0.387433\\
-0.0749525 -0.392915\\
-0.0501333 -0.396846\\
-0.0251162 -0.399211\\
0 -0.4\\
0.0251162 -0.399211\\
0.0501333 -0.396846\\
0.0749525 -0.392915\\
0.099476 -0.387433\\
0.123607 -0.380423\\
0.14725 -0.371911\\
0.170312 -0.361931\\
0.192701 -0.350523\\
0.214331 -0.337731\\
0.235114 -0.323607\\
0.25497 -0.308205\\
0.273819 -0.291587\\
0.291587 -0.273819\\
0.308205 -0.25497\\
0.323607 -0.235114\\
0.337731 -0.214331\\
0.350523 -0.192701\\
0.361931 -0.170312\\
0.371911 -0.14725\\
0.380423 -0.123607\\
0.387433 -0.099476\\
0.392915 -0.0749525\\
0.396846 -0.0501333\\
0.399211 -0.0251162\\
0.4 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.056,0.401) { 0.4};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.5 0\\
0.499013 0.0313953\\
0.496057 0.0626666\\
0.491144 0.0936907\\
0.484292 0.124345\\
0.475528 0.154508\\
0.464888 0.184062\\
0.452414 0.21289\\
0.438153 0.240877\\
0.422164 0.267913\\
0.404508 0.293893\\
0.385257 0.318712\\
0.364484 0.342274\\
0.342274 0.364484\\
0.318712 0.385257\\
0.293893 0.404508\\
0.267913 0.422164\\
0.240877 0.438153\\
0.21289 0.452414\\
0.184062 0.464888\\
0.154508 0.475528\\
0.124345 0.484292\\
0.0936907 0.491144\\
0.0626666 0.496057\\
0.0313953 0.499013\\
0 0.5\\
-0.0313953 0.499013\\
-0.0626666 0.496057\\
-0.0936907 0.491144\\
-0.124345 0.484292\\
-0.154508 0.475528\\
-0.184062 0.464888\\
-0.21289 0.452414\\
-0.240877 0.438153\\
-0.267913 0.422164\\
-0.293893 0.404508\\
-0.318712 0.385257\\
-0.342274 0.364484\\
-0.364484 0.342274\\
-0.385257 0.318712\\
-0.404508 0.293893\\
-0.422164 0.267913\\
-0.438153 0.240877\\
-0.452414 0.21289\\
-0.464888 0.184062\\
-0.475528 0.154508\\
-0.484292 0.124345\\
-0.491144 0.0936907\\
-0.496057 0.0626666\\
-0.499013 0.0313953\\
-0.5 0\\
-0.499013 -0.0313953\\
-0.496057 -0.0626666\\
-0.491144 -0.0936907\\
-0.484292 -0.124345\\
-0.475528 -0.154508\\
-0.464888 -0.184062\\
-0.452414 -0.21289\\
-0.438153 -0.240877\\
-0.422164 -0.267913\\
-0.404508 -0.293893\\
-0.385257 -0.318712\\
-0.364484 -0.342274\\
-0.342274 -0.364484\\
-0.318712 -0.385257\\
-0.293893 -0.404508\\
-0.267913 -0.422164\\
-0.240877 -0.438153\\
-0.21289 -0.452414\\
-0.184062 -0.464888\\
-0.154508 -0.475528\\
-0.124345 -0.484292\\
-0.0936907 -0.491144\\
-0.0626666 -0.496057\\
-0.0313953 -0.499013\\
0 -0.5\\
0.0313953 -0.499013\\
0.0626666 -0.496057\\
0.0936907 -0.491144\\
0.124345 -0.484292\\
0.154508 -0.475528\\
0.184062 -0.464888\\
0.21289 -0.452414\\
0.240877 -0.438153\\
0.267913 -0.422164\\
0.293893 -0.404508\\
0.318712 -0.385257\\
0.342274 -0.364484\\
0.364484 -0.342274\\
0.385257 -0.318712\\
0.404508 -0.293893\\
0.422164 -0.267913\\
0.438153 -0.240877\\
0.452414 -0.21289\\
0.464888 -0.184062\\
0.475528 -0.154508\\
0.484292 -0.124345\\
0.491144 -0.0936907\\
0.496057 -0.0626666\\
0.499013 -0.0313953\\
0.5 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.07,0.5) { 0.5};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-0.433013 -0.25\\
0.433013 0.25\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-0.25 -0.433013\\
0.25 0.433013\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-3.06162e-17 -0.5\\
3.06162e-17 0.5\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.25 -0.433013\\
-0.25 0.433013\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.433013 -0.25\\
-0.433013 0.25\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
0.5 -6.12323e-17\\
-0.5 6.12323e-17\\
};
\node[align=center, text=black]
at (axis cs:0.476,0.275) {30};
\node[align=center, text=black]
at (axis cs:-0.476,-0.275) {210};
\node[align=center, text=black]
at (axis cs:0.275,0.476) {60};
\node[align=center, text=black]
at (axis cs:-0.275,-0.476) {240};
\node[align=center, text=black]
at (axis cs:0,0.55) {90};
\node[align=center, text=black]
at (axis cs:-0,-0.55) {270};
\node[align=center, text=black]
at (axis cs:-0.275,0.476) {120};
\node[align=center, text=black]
at (axis cs:0.275,-0.476) {300};
\node[align=center, text=black]
at (axis cs:-0.476,0.275) {150};
\node[align=center, text=black]
at (axis cs:0.476,-0.275) {330};
\node[align=center, text=black]
at (axis cs:-0.55,0) {180};
\addplot [color=red,dashed,forget plot]
table[row sep=crcr]{%
0 0\\
0.0399494 0.000799094\\
0.0795954 0.00318551\\
0.118637 0.0071268\\
0.15678 0.0125692\\
0.193736 0.0194385\\
0.229229 0.0276403\\
0.262995 0.0370617\\
0.294784 0.0475721\\
0.324366 0.0590247\\
0.351528 0.0712583\\
0.376081 0.084099\\
0.397856 0.097362\\
0.416709 0.110854\\
0.432523 0.124374\\
0.445205 0.137718\\
0.454691 0.15068\\
0.460943 0.163053\\
0.463951 0.174633\\
0.463733 0.185221\\
0.460334 0.194626\\
0.453825 0.202666\\
0.444303 0.209169\\
0.43189 0.213979\\
0.41673 0.216954\\
0.398992 0.21797\\
0.378861 0.216921\\
0.356542 0.213722\\
0.332258 0.208309\\
0.306242 0.20064\\
0.278742 0.190698\\
0.250013 0.178487\\
0.220318 0.164036\\
0.189923 0.1474\\
0.159097 0.128656\\
0.128107 0.107903\\
0.0972158 0.0852648\\
0.0666823 0.0608869\\
0.0367557 0.0349345\\
0.00767466 0.00759224\\
-0.0203348 -0.0209375\\
-0.0470616 -0.0504366\\
-0.0723113 -0.0806728\\
-0.0959078 -0.111402\\
-0.117695 -0.142371\\
-0.137538 -0.173319\\
-0.155323 -0.20398\\
-0.170961 -0.234086\\
-0.184386 -0.26337\\
-0.195556 -0.291565\\
-0.204451 -0.318414\\
-0.211078 -0.343663\\
-0.215466 -0.367071\\
-0.217666 -0.388409\\
-0.217753 -0.407464\\
-0.215822 -0.424037\\
-0.211985 -0.437952\\
-0.206378 -0.449052\\
-0.199147 -0.457201\\
-0.190457 -0.46229\\
-0.180484 -0.464232\\
-0.169415 -0.462969\\
-0.157445 -0.458469\\
-0.144776 -0.450726\\
-0.131612 -0.439763\\
-0.118162 -0.42563\\
-0.104629 -0.408404\\
-0.0912183 -0.38819\\
-0.0781261 -0.365118\\
-0.0655424 -0.339342\\
-0.0536473 -0.311041\\
-0.0426091 -0.280416\\
-0.0325826 -0.247687\\
-0.0237072 -0.213095\\
-0.0161057 -0.176895\\
-0.00988254 -0.139358\\
-0.00512289 -0.100765\\
-0.00189173 -0.0614079\\
-0.000233044 -0.0215847\\
-0.000169375 0.0184024\\
-0.00170159 0.0582498\\
-0.00480886 0.0976549\\
-0.00944889 0.136319\\
-0.0155584 0.173951\\
-0.0230537 0.210268\\
-0.0318319 0.244997\\
-0.0417716 0.277883\\
-0.0527348 0.308684\\
-0.0645676 0.337178\\
-0.0771029 0.363162\\
-0.0901615 0.386456\\
-0.103554 0.406903\\
-0.117084 0.42437\\
-0.130549 0.438753\\
-0.143743 0.449971\\
-0.156459 0.457971\\
-0.168492 0.46273\\
-0.17964 0.46425\\
-0.189707 0.462561\\
-0.198506 0.45772\\
-0.205859 0.44981\\
-0.211602 0.438941\\
-0.215584 0.425245\\
-0.217672 0.408877\\
-0.21775 0.390013\\
-0.21572 0.368849\\
-0.211509 0.345597\\
-0.205062 0.320486\\
-0.196347 0.293756\\
-0.185359 0.265658\\
-0.172112 0.236452\\
-0.156648 0.206401\\
-0.139031 0.175775\\
-0.119348 0.14484\\
-0.0977109 0.113863\\
-0.0742531 0.0831051\\
-0.0491289 0.0528205\\
-0.0225128 0.0232541\\
0.00540204 -0.00536108\\
0.0344058 -0.0328055\\
0.0642737 -0.0588757\\
0.0947679 -0.0833853\\
0.12564 -0.106167\\
0.156632 -0.127075\\
0.187481 -0.145984\\
0.21792 -0.162791\\
0.24768 -0.177417\\
0.276496 -0.189808\\
0.304103 -0.199932\\
0.330246 -0.207781\\
0.354678 -0.213373\\
0.377161 -0.216746\\
0.397474 -0.217964\\
0.41541 -0.217109\\
0.430781 -0.214285\\
0.443419 -0.209616\\
0.453176 -0.203242\\
0.459929 -0.195319\\
0.463579 -0.186016\\
0.464052 -0.175515\\
0.461302 -0.164006\\
0.455308 -0.151689\\
0.446079 -0.138767\\
0.433649 -0.125446\\
0.418081 -0.111932\\
0.399466 -0.0984306\\
0.377919 -0.0851422\\
0.353582 -0.072261\\
0.32662 -0.0599725\\
0.297223 -0.0484516\\
0.265602 -0.0378606\\
0.231985 -0.0283475\\
0.19662 -0.0200442\\
0.15977 -0.0130651\\
0.121712 -0.00750604\\
0.0827305 -0.00344297\\
0.0431216 -0.000931254\\
0.00318528 -5.07305e-06\\
-0.0367752 -0.00067701\\
-0.0764565 -0.00293793\\
-0.115558 -0.00675709\\
-0.153783 -0.0120825\\
-0.190844 -0.0188413\\
-0.226463 -0.0269409\\
-0.260375 -0.0362697\\
-0.29233 -0.0466985\\
-0.322096 -0.0580818\\
-0.349459 -0.0702595\\
-0.374226 -0.0830585\\
-0.396227 -0.0962948\\
-0.415318 -0.109776\\
-0.431378 -0.123301\\
-0.444312 -0.136667\\
-0.454054 -0.149667\\
-0.460564 -0.162094\\
-0.46383 -0.173744\\
-0.463868 -0.184419\\
-0.46072 -0.193925\\
-0.454455 -0.20208\\
-0.445169 -0.208711\\
-0.432981 -0.213662\\
-0.418034 -0.216788\\
-0.400495 -0.217964\\
-0.380547 -0.217083\\
-0.358395 -0.214057\\
-0.334258 -0.208822\\
-0.308372 -0.201334\\
-0.28098 -0.191573\\
-0.25234 -0.179542\\
-0.222712 -0.165268\\
-0.192363 -0.148803\\
-0.161561 -0.130223\\
-0.130574 -0.109626\\
-0.0996659 -0.0871333\\
-0.0690948 -0.0628882\\
-0.0391109 -0.0370547\\
-0.00995408 -0.00981587\\
0.0181487 0.0186271\\
0.044985 0.0480573\\
0.070359 0.0782437\\
0.0940931 0.108943\\
0.11603 0.139902\\
0.136031 0.170862\\
0.153984 0.201555\\
0.169796 0.231715\\
0.1834 0.261074\\
0.194749 0.289366\\
0.203826 0.316331\\
0.210633 0.341716\\
0.215197 0.36528\\
0.21757 0.386791\\
0.217822 0.406035\\
0.216047 0.422813\\
0.212358 0.436946\\
0.206886 0.448274\\
0.199778 0.456663\\
0.191198 0.461999\\
0.181321 0.464194\\
0.170332 0.463188\\
0.158427 0.458946\\
0.145806 0.451461\\
0.132674 0.440753\\
0.119238 0.42687\\
0.105705 0.409887\\
0.0922771 0.389907\\
0.0791525 0.367056\\
0.0665216 0.341489\\
0.0545653 0.313382\\
0.043453 0.282934\\
0.0333406 0.250365\\
0.0243688 0.215912\\
0.0166618 0.17983\\
0.0103255 0.142389\\
0.00544663 0.10387\\
0.00209186 0.064563\\
0.00030684 0.0247659\\
0.000115836 -0.0152192\\
0.00152145 -0.0550888\\
0.00450456 -0.0945402\\
0.00902458 -0.133275\\
0.0150199 -0.170999\\
0.0224084 -0.20743\\
0.0310886 -0.242296\\
0.0409407 -0.275338\\
0.0518277 -0.306313\\
0.0635973 -0.334998\\
0.0760831 -0.361189\\
0.0891068 -0.384703\\
0.10248 -0.405382\\
0.116006 -0.423091\\
0.129484 -0.437723\\
0.142707 -0.449195\\
0.155469 -0.457453\\
0.167564 -0.46247\\
0.178789 -0.464247\\
0.18895 -0.462811\\
0.197856 -0.458219\\
0.205331 -0.45055\\
0.211207 -0.439912\\
0.215335 -0.426436\\
0.217578 -0.410274\\
0.217819 -0.391602\\
0.215961 -0.370614\\
0.211926 -0.34752\\
0.205658 -0.322548\\
0.197125 -0.295938\\
0.186317 -0.26794\\
0.173249 -0.238812\\
0.157959 -0.208819\\
0.14051 -0.178228\\
0.120988 -0.147308\\
0.0995026 -0.116325\\
0.0761843 -0.0855404\\
0.0511867 -0.055209\\
0.0246826 -0.0255767\\
-0.00313633 0.00312248\\
-0.0320615 0.0306679\\
-0.0618691 0.0568545\\
-0.0923223 0.0814947\\
-0.123173 0.10442\\
-0.154165 0.125482\\
-0.185035 0.144554\\
-0.215517 0.161531\\
-0.245341 0.176334\\
-0.274242 0.188904\\
-0.301955 0.199209\\
-0.328224 0.207239\\
-0.3528 0.21301\\
-0.375447 0.216558\\
-0.395941 0.217944\\
-0.414073 0.21725\\
-0.429655 0.214579\\
-0.442516 0.210052\\
-0.452507 0.203809\\
-0.459503 0.196003\\
-0.463403 0.186803\\
-0.464132 0.17639\\
-0.461639 0.164955\\
-0.455904 0.152695\\
-0.446932 0.139814\\
-0.434755 0.126516\\
-0.419434 0.11301\\
-0.401058 0.0995005\\
-0.379739 0.086188\\
-0.355618 0.0732674\\
-0.328859 0.0609251\\
-0.299649 0.049337\\
-0.268196 0.0386663\\
-0.234729 0.0290623\\
-0.199494 0.0206582\\
-0.162753 0.01357\\
-0.12478 0.00789477\\
-0.0858616 0.00371027\\
-0.0462917 0.00107348\\
-0.00637041 2.02918e-05\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.60000,0.20000,0.00000}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -4,
xmax= 4,
xtick={ 0},
xticklabels={{null}},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
ytick={ -1,-0.8,-0.6,-0.4,-0.2, 0, 0.2, 0.4, 0.6, 0.8, 1},
yticklabels={\empty},
axis background/.style={fill=white!90!blue}
]
\addplot [color=mycolor1,dashed,line width=2.8pt,mark size=7.1pt,mark=*,mark options={solid,fill=black!50!mycolor1,draw=black},forget plot]
table[row sep=crcr]{%
-3.14159 -1.22465e-16\\
-2.82743 -0.309017\\
nan nan\\
-2.19911 -0.809017\\
-1.88496 -0.951057\\
-1.5708 -1\\
nan nan\\
-0.942478 -0.809017\\
-0.628319 -0.587785\\
-0.314159 -0.309017\\
nan nan\\
0.314159 0.309017\\
0.628319 0.587785\\
0.942478 0.809017\\
1.25664 0.951057\\
1.5708 1\\
1.88496 0.951057\\
2.19911 0.809017\\
2.51327 0.587785\\
2.82743 0.309017\\
3.14159 1.22465e-16\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.652\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
clip=false,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -15,
xmax= 15,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-17.25,
ymax=17.25,
hide axis,
axis x line*=bottom,
axis y line*=left
]
\addplot[area legend,solid,draw=white!83!darkgray,fill=white,forget plot]
table[row sep=crcr] {%
x y\\
15 0\\
14.9704 0.941858\\
14.8817 1.88\\
14.7343 2.81072\\
14.5287 3.73035\\
14.2658 4.63525\\
13.9466 5.52187\\
13.5724 6.38669\\
13.1446 7.22631\\
12.6649 8.0374\\
12.1353 8.81678\\
11.5577 9.56136\\
10.9345 10.2682\\
10.2682 10.9345\\
9.56136 11.5577\\
8.81678 12.1353\\
8.0374 12.6649\\
7.22631 13.1446\\
6.38669 13.5724\\
5.52187 13.9466\\
4.63525 14.2658\\
3.73035 14.5287\\
2.81072 14.7343\\
1.88 14.8817\\
0.941858 14.9704\\
0 15\\
-0.941858 14.9704\\
-1.88 14.8817\\
-2.81072 14.7343\\
-3.73035 14.5287\\
-4.63525 14.2658\\
-5.52187 13.9466\\
-6.38669 13.5724\\
-7.22631 13.1446\\
-8.0374 12.6649\\
-8.81678 12.1353\\
-9.56136 11.5577\\
-10.2682 10.9345\\
-10.9345 10.2682\\
-11.5577 9.56136\\
-12.1353 8.81678\\
-12.6649 8.0374\\
-13.1446 7.22631\\
-13.5724 6.38669\\
-13.9466 5.52187\\
-14.2658 4.63525\\
-14.5287 3.73035\\
-14.7343 2.81072\\
-14.8817 1.88\\
-14.9704 0.941858\\
-15 0\\
-14.9704 -0.941858\\
-14.8817 -1.88\\
-14.7343 -2.81072\\
-14.5287 -3.73035\\
-14.2658 -4.63525\\
-13.9466 -5.52187\\
-13.5724 -6.38669\\
-13.1446 -7.22631\\
-12.6649 -8.0374\\
-12.1353 -8.81678\\
-11.5577 -9.56136\\
-10.9345 -10.2682\\
-10.2682 -10.9345\\
-9.56136 -11.5577\\
-8.81678 -12.1353\\
-8.0374 -12.6649\\
-7.22631 -13.1446\\
-6.38669 -13.5724\\
-5.52187 -13.9466\\
-4.63525 -14.2658\\
-3.73035 -14.5287\\
-2.81072 -14.7343\\
-1.88 -14.8817\\
-0.941858 -14.9704\\
0 -15\\
0.941858 -14.9704\\
1.88 -14.8817\\
2.81072 -14.7343\\
3.73035 -14.5287\\
4.63525 -14.2658\\
5.52187 -13.9466\\
6.38669 -13.5724\\
7.22631 -13.1446\\
8.0374 -12.6649\\
8.81678 -12.1353\\
9.56136 -11.5577\\
10.2682 -10.9345\\
10.9345 -10.2682\\
11.5577 -9.56136\\
12.1353 -8.81678\\
12.6649 -8.0374\\
13.1446 -7.22631\\
13.5724 -6.38669\\
13.9466 -5.52187\\
14.2658 -4.63525\\
14.5287 -3.73035\\
14.7343 -2.81072\\
14.8817 -1.88\\
14.9704 -0.941858\\
15 0\\
}--cycle;
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
5 0\\
4.96057 0.626666\\
4.84292 1.24345\\
4.64888 1.84062\\
4.38153 2.40877\\
4.04508 2.93893\\
3.64484 3.42274\\
3.18712 3.85257\\
2.67913 4.22164\\
2.1289 4.52414\\
1.54508 4.75528\\
0.936907 4.91144\\
0.313953 4.99013\\
-0.313953 4.99013\\
-0.936907 4.91144\\
-1.54508 4.75528\\
-2.1289 4.52414\\
-2.67913 4.22164\\
-3.18712 3.85257\\
-3.64484 3.42274\\
-4.04508 2.93893\\
-4.38153 2.40877\\
-4.64888 1.84062\\
-4.84292 1.24345\\
-4.96057 0.626666\\
-5 0\\
-4.96057 -0.626666\\
-4.84292 -1.24345\\
-4.64888 -1.84062\\
-4.38153 -2.40877\\
-4.04508 -2.93893\\
-3.64484 -3.42274\\
-3.18712 -3.85257\\
-2.67913 -4.22164\\
-2.1289 -4.52414\\
-1.54508 -4.75528\\
-0.936907 -4.91144\\
-0.313953 -4.99013\\
0.313953 -4.99013\\
0.936907 -4.91144\\
1.54508 -4.75528\\
2.1289 -4.52414\\
2.67913 -4.22164\\
3.18712 -3.85257\\
3.64484 -3.42274\\
4.04508 -2.93893\\
4.38153 -2.40877\\
4.64888 -1.84062\\
4.84292 -1.24345\\
4.96057 -0.626666\\
5 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.731,5.199) { 5};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
10 0\\
9.98027 0.627905\\
9.92115 1.25333\\
9.82287 1.87381\\
9.68583 2.4869\\
9.51057 3.09017\\
9.29776 3.68125\\
9.04827 4.25779\\
8.76307 4.81754\\
8.44328 5.35827\\
8.09017 5.87785\\
7.70513 6.37424\\
7.28969 6.84547\\
6.84547 7.28969\\
6.37424 7.70513\\
5.87785 8.09017\\
5.35827 8.44328\\
4.81754 8.76307\\
4.25779 9.04827\\
3.68125 9.29776\\
3.09017 9.51057\\
2.4869 9.68583\\
1.87381 9.82287\\
1.25333 9.92115\\
0.627905 9.98027\\
0 10\\
-0.627905 9.98027\\
-1.25333 9.92115\\
-1.87381 9.82287\\
-2.4869 9.68583\\
-3.09017 9.51057\\
-3.68125 9.29776\\
-4.25779 9.04827\\
-4.81754 8.76307\\
-5.35827 8.44328\\
-5.87785 8.09017\\
-6.37424 7.70513\\
-6.84547 7.28969\\
-7.28969 6.84547\\
-7.70513 6.37424\\
-8.09017 5.87785\\
-8.44328 5.35827\\
-8.76307 4.81754\\
-9.04827 4.25779\\
-9.29776 3.68125\\
-9.51057 3.09017\\
-9.68583 2.4869\\
-9.82287 1.87381\\
-9.92115 1.25333\\
-9.98027 0.627905\\
-10 0\\
-9.98027 -0.627905\\
-9.92115 -1.25333\\
-9.82287 -1.87381\\
-9.68583 -2.4869\\
-9.51057 -3.09017\\
-9.29776 -3.68125\\
-9.04827 -4.25779\\
-8.76307 -4.81754\\
-8.44328 -5.35827\\
-8.09017 -5.87785\\
-7.70513 -6.37424\\
-7.28969 -6.84547\\
-6.84547 -7.28969\\
-6.37424 -7.70513\\
-5.87785 -8.09017\\
-5.35827 -8.44328\\
-4.81754 -8.76307\\
-4.25779 -9.04827\\
-3.68125 -9.29776\\
-3.09017 -9.51057\\
-2.4869 -9.68583\\
-1.87381 -9.82287\\
-1.25333 -9.92115\\
-0.627905 -9.98027\\
0 -10\\
0.627905 -9.98027\\
1.25333 -9.92115\\
1.87381 -9.82287\\
2.4869 -9.68583\\
3.09017 -9.51057\\
3.68125 -9.29776\\
4.25779 -9.04827\\
4.81754 -8.76307\\
5.35827 -8.44328\\
5.87785 -8.09017\\
6.37424 -7.70513\\
6.84547 -7.28969\\
7.28969 -6.84547\\
7.70513 -6.37424\\
8.09017 -5.87785\\
8.44328 -5.35827\\
8.76307 -4.81754\\
9.04827 -4.25779\\
9.29776 -3.68125\\
9.51057 -3.09017\\
9.68583 -2.4869\\
9.82287 -1.87381\\
9.92115 -1.25333\\
9.98027 -0.627905\\
10 0\\
};
\node[above right, align=left, text=black]
at (axis cs:1.427,10.15) { 10};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
15 0\\
14.9704 0.941858\\
14.8817 1.88\\
14.7343 2.81072\\
14.5287 3.73035\\
14.2658 4.63525\\
13.9466 5.52187\\
13.5724 6.38669\\
13.1446 7.22631\\
12.6649 8.0374\\
12.1353 8.81678\\
11.5577 9.56136\\
10.9345 10.2682\\
10.2682 10.9345\\
9.56136 11.5577\\
8.81678 12.1353\\
8.0374 12.6649\\
7.22631 13.1446\\
6.38669 13.5724\\
5.52187 13.9466\\
4.63525 14.2658\\
3.73035 14.5287\\
2.81072 14.7343\\
1.88 14.8817\\
0.941858 14.9704\\
0 15\\
-0.941858 14.9704\\
-1.88 14.8817\\
-2.81072 14.7343\\
-3.73035 14.5287\\
-4.63525 14.2658\\
-5.52187 13.9466\\
-6.38669 13.5724\\
-7.22631 13.1446\\
-8.0374 12.6649\\
-8.81678 12.1353\\
-9.56136 11.5577\\
-10.2682 10.9345\\
-10.9345 10.2682\\
-11.5577 9.56136\\
-12.1353 8.81678\\
-12.6649 8.0374\\
-13.1446 7.22631\\
-13.5724 6.38669\\
-13.9466 5.52187\\
-14.2658 4.63525\\
-14.5287 3.73035\\
-14.7343 2.81072\\
-14.8817 1.88\\
-14.9704 0.941858\\
-15 0\\
-14.9704 -0.941858\\
-14.8817 -1.88\\
-14.7343 -2.81072\\
-14.5287 -3.73035\\
-14.2658 -4.63525\\
-13.9466 -5.52187\\
-13.5724 -6.38669\\
-13.1446 -7.22631\\
-12.6649 -8.0374\\
-12.1353 -8.81678\\
-11.5577 -9.56136\\
-10.9345 -10.2682\\
-10.2682 -10.9345\\
-9.56136 -11.5577\\
-8.81678 -12.1353\\
-8.0374 -12.6649\\
-7.22631 -13.1446\\
-6.38669 -13.5724\\
-5.52187 -13.9466\\
-4.63525 -14.2658\\
-3.73035 -14.5287\\
-2.81072 -14.7343\\
-1.88 -14.8817\\
-0.941858 -14.9704\\
0 -15\\
0.941858 -14.9704\\
1.88 -14.8817\\
2.81072 -14.7343\\
3.73035 -14.5287\\
4.63525 -14.2658\\
5.52187 -13.9466\\
6.38669 -13.5724\\
7.22631 -13.1446\\
8.0374 -12.6649\\
8.81678 -12.1353\\
9.56136 -11.5577\\
10.2682 -10.9345\\
10.9345 -10.2682\\
11.5577 -9.56136\\
12.1353 -8.81678\\
12.6649 -8.0374\\
13.1446 -7.22631\\
13.5724 -6.38669\\
13.9466 -5.52187\\
14.2658 -4.63525\\
14.5287 -3.73035\\
14.7343 -2.81072\\
14.8817 -1.88\\
14.9704 -0.941858\\
15 0\\
};
\node[above right, align=left, text=black]
at (axis cs:2.122,15.102) { 15};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-12.9904 -7.5\\
12.9904 7.5\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-7.5 -12.9904\\
7.5 12.9904\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-9.18485e-16 -15\\
9.18485e-16 15\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
7.5 -12.9904\\
-7.5 12.9904\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
12.9904 -7.5\\
-12.9904 7.5\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
15 -1.83697e-15\\
-15 1.83697e-15\\
};
\node[align=center, text=black]
at (axis cs:14.289,8.25) {30};
\node[align=center, text=black]
at (axis cs:-14.289,-8.25) {210};
\node[align=center, text=black]
at (axis cs:8.25,14.289) {60};
\node[align=center, text=black]
at (axis cs:-8.25,-14.289) {240};
\node[align=center, text=black]
at (axis cs:0,16.5) {90};
\node[align=center, text=black]
at (axis cs:-0,-16.5) {270};
\node[align=center, text=black]
at (axis cs:-8.25,14.289) {120};
\node[align=center, text=black]
at (axis cs:8.25,-14.289) {300};
\node[align=center, text=black]
at (axis cs:-14.289,8.25) {150};
\node[align=center, text=black]
at (axis cs:14.289,-8.25) {330};
\node[align=center, text=black]
at (axis cs:-16.5,0) {180};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
10 0\\
9.51057 3.09017\\
0 0\\
4.75528 1.54508\\
4.04508 2.93893\\
0 0\\
3.23607 2.35114\\
2.35114 3.23607\\
0 0\\
2.93893 4.04508\\
1.54508 4.75528\\
0 0\\
1.23607 3.80423\\
2.44929e-16 4\\
0 0\\
1.83697e-16 3\\
-0.927051 2.85317\\
0 0\\
-1.23607 3.80423\\
-2.35114 3.23607\\
0 0\\
-2.35114 3.23607\\
-3.23607 2.35114\\
0 0\\
-1.61803 1.17557\\
-1.90211 0.618034\\
0 0\\
-4.75528 1.54508\\
-5 6.12323e-16\\
0 0\\
-3 3.67394e-16\\
-2.85317 -0.927051\\
0 0\\
-3.80423 -1.23607\\
-3.23607 -2.35114\\
0 0\\
-2.42705 -1.76336\\
-1.76336 -2.42705\\
0 0\\
-2.35114 -3.23607\\
-1.23607 -3.80423\\
0 0\\
-1.23607 -3.80423\\
-7.34788e-16 -4\\
0 0\\
-9.18485e-16 -5\\
1.54508 -4.75528\\
0 0\\
1.23607 -3.80423\\
2.35114 -3.23607\\
0 0\\
2.35114 -3.23607\\
3.23607 -2.35114\\
0 0\\
6.47214 -4.70228\\
7.60845 -2.47214\\
0 0\\
14.2658 -4.63525\\
15 -3.67394e-15\\
0 0\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.652\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
clip=false,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -20,
xmax= 20,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -23,
ymax= 23,
hide axis,
axis x line*=bottom,
axis y line*=left
]
\addplot[area legend,solid,draw=white!83!darkgray,fill=white,forget plot]
table[row sep=crcr] {%
x y\\
20 0\\
19.9605 1.25581\\
19.8423 2.50666\\
19.6457 3.74763\\
19.3717 4.9738\\
19.0211 6.18034\\
18.5955 7.36249\\
18.0965 8.51559\\
17.5261 9.63507\\
16.8866 10.7165\\
16.1803 11.7557\\
15.4103 12.7485\\
14.5794 13.6909\\
13.6909 14.5794\\
12.7485 15.4103\\
11.7557 16.1803\\
10.7165 16.8866\\
9.63507 17.5261\\
8.51559 18.0965\\
7.36249 18.5955\\
6.18034 19.0211\\
4.9738 19.3717\\
3.74763 19.6457\\
2.50666 19.8423\\
1.25581 19.9605\\
0 20\\
-1.25581 19.9605\\
-2.50666 19.8423\\
-3.74763 19.6457\\
-4.9738 19.3717\\
-6.18034 19.0211\\
-7.36249 18.5955\\
-8.51559 18.0965\\
-9.63507 17.5261\\
-10.7165 16.8866\\
-11.7557 16.1803\\
-12.7485 15.4103\\
-13.6909 14.5794\\
-14.5794 13.6909\\
-15.4103 12.7485\\
-16.1803 11.7557\\
-16.8866 10.7165\\
-17.5261 9.63507\\
-18.0965 8.51559\\
-18.5955 7.36249\\
-19.0211 6.18034\\
-19.3717 4.9738\\
-19.6457 3.74763\\
-19.8423 2.50666\\
-19.9605 1.25581\\
-20 0\\
-19.9605 -1.25581\\
-19.8423 -2.50666\\
-19.6457 -3.74763\\
-19.3717 -4.9738\\
-19.0211 -6.18034\\
-18.5955 -7.36249\\
-18.0965 -8.51559\\
-17.5261 -9.63507\\
-16.8866 -10.7165\\
-16.1803 -11.7557\\
-15.4103 -12.7485\\
-14.5794 -13.6909\\
-13.6909 -14.5794\\
-12.7485 -15.4103\\
-11.7557 -16.1803\\
-10.7165 -16.8866\\
-9.63507 -17.5261\\
-8.51559 -18.0965\\
-7.36249 -18.5955\\
-6.18034 -19.0211\\
-4.9738 -19.3717\\
-3.74763 -19.6457\\
-2.50666 -19.8423\\
-1.25581 -19.9605\\
0 -20\\
1.25581 -19.9605\\
2.50666 -19.8423\\
3.74763 -19.6457\\
4.9738 -19.3717\\
6.18034 -19.0211\\
7.36249 -18.5955\\
8.51559 -18.0965\\
9.63507 -17.5261\\
10.7165 -16.8866\\
11.7557 -16.1803\\
12.7485 -15.4103\\
13.6909 -14.5794\\
14.5794 -13.6909\\
15.4103 -12.7485\\
16.1803 -11.7557\\
16.8866 -10.7165\\
17.5261 -9.63507\\
18.0965 -8.51559\\
18.5955 -7.36249\\
19.0211 -6.18034\\
19.3717 -4.9738\\
19.6457 -3.74763\\
19.8423 -2.50666\\
19.9605 -1.25581\\
20 0\\
}--cycle;
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
5 0\\
4.96057 0.626666\\
4.84292 1.24345\\
4.64888 1.84062\\
4.38153 2.40877\\
4.04508 2.93893\\
3.64484 3.42274\\
3.18712 3.85257\\
2.67913 4.22164\\
2.1289 4.52414\\
1.54508 4.75528\\
0.936907 4.91144\\
0.313953 4.99013\\
-0.313953 4.99013\\
-0.936907 4.91144\\
-1.54508 4.75528\\
-2.1289 4.52414\\
-2.67913 4.22164\\
-3.18712 3.85257\\
-3.64484 3.42274\\
-4.04508 2.93893\\
-4.38153 2.40877\\
-4.64888 1.84062\\
-4.84292 1.24345\\
-4.96057 0.626666\\
-5 0\\
-4.96057 -0.626666\\
-4.84292 -1.24345\\
-4.64888 -1.84062\\
-4.38153 -2.40877\\
-4.04508 -2.93893\\
-3.64484 -3.42274\\
-3.18712 -3.85257\\
-2.67913 -4.22164\\
-2.1289 -4.52414\\
-1.54508 -4.75528\\
-0.936907 -4.91144\\
-0.313953 -4.99013\\
0.313953 -4.99013\\
0.936907 -4.91144\\
1.54508 -4.75528\\
2.1289 -4.52414\\
2.67913 -4.22164\\
3.18712 -3.85257\\
3.64484 -3.42274\\
4.04508 -2.93893\\
4.38153 -2.40877\\
4.64888 -1.84062\\
4.84292 -1.24345\\
4.96057 -0.626666\\
5 0\\
};
\node[above right, align=left, text=black]
at (axis cs:0.731,5.199) { 5};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
10 0\\
9.92115 1.25333\\
9.68583 2.4869\\
9.29776 3.68125\\
8.76307 4.81754\\
8.09017 5.87785\\
7.28969 6.84547\\
6.37424 7.70513\\
5.35827 8.44328\\
4.25779 9.04827\\
3.09017 9.51057\\
1.87381 9.82287\\
0.627905 9.98027\\
-0.627905 9.98027\\
-1.87381 9.82287\\
-3.09017 9.51057\\
-4.25779 9.04827\\
-5.35827 8.44328\\
-6.37424 7.70513\\
-7.28969 6.84547\\
-8.09017 5.87785\\
-8.76307 4.81754\\
-9.29776 3.68125\\
-9.68583 2.4869\\
-9.92115 1.25333\\
-10 0\\
-9.92115 -1.25333\\
-9.68583 -2.4869\\
-9.29776 -3.68125\\
-8.76307 -4.81754\\
-8.09017 -5.87785\\
-7.28969 -6.84547\\
-6.37424 -7.70513\\
-5.35827 -8.44328\\
-4.25779 -9.04827\\
-3.09017 -9.51057\\
-1.87381 -9.82287\\
-0.627905 -9.98027\\
0.627905 -9.98027\\
1.87381 -9.82287\\
3.09017 -9.51057\\
4.25779 -9.04827\\
5.35827 -8.44328\\
6.37424 -7.70513\\
7.28969 -6.84547\\
8.09017 -5.87785\\
8.76307 -4.81754\\
9.29776 -3.68125\\
9.68583 -2.4869\\
9.92115 -1.25333\\
10 0\\
};
\node[above right, align=left, text=black]
at (axis cs:1.427,10.15) { 10};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
15 0\\
14.9704 0.941858\\
14.8817 1.88\\
14.7343 2.81072\\
14.5287 3.73035\\
14.2658 4.63525\\
13.9466 5.52187\\
13.5724 6.38669\\
13.1446 7.22631\\
12.6649 8.0374\\
12.1353 8.81678\\
11.5577 9.56136\\
10.9345 10.2682\\
10.2682 10.9345\\
9.56136 11.5577\\
8.81678 12.1353\\
8.0374 12.6649\\
7.22631 13.1446\\
6.38669 13.5724\\
5.52187 13.9466\\
4.63525 14.2658\\
3.73035 14.5287\\
2.81072 14.7343\\
1.88 14.8817\\
0.941858 14.9704\\
0 15\\
-0.941858 14.9704\\
-1.88 14.8817\\
-2.81072 14.7343\\
-3.73035 14.5287\\
-4.63525 14.2658\\
-5.52187 13.9466\\
-6.38669 13.5724\\
-7.22631 13.1446\\
-8.0374 12.6649\\
-8.81678 12.1353\\
-9.56136 11.5577\\
-10.2682 10.9345\\
-10.9345 10.2682\\
-11.5577 9.56136\\
-12.1353 8.81678\\
-12.6649 8.0374\\
-13.1446 7.22631\\
-13.5724 6.38669\\
-13.9466 5.52187\\
-14.2658 4.63525\\
-14.5287 3.73035\\
-14.7343 2.81072\\
-14.8817 1.88\\
-14.9704 0.941858\\
-15 0\\
-14.9704 -0.941858\\
-14.8817 -1.88\\
-14.7343 -2.81072\\
-14.5287 -3.73035\\
-14.2658 -4.63525\\
-13.9466 -5.52187\\
-13.5724 -6.38669\\
-13.1446 -7.22631\\
-12.6649 -8.0374\\
-12.1353 -8.81678\\
-11.5577 -9.56136\\
-10.9345 -10.2682\\
-10.2682 -10.9345\\
-9.56136 -11.5577\\
-8.81678 -12.1353\\
-8.0374 -12.6649\\
-7.22631 -13.1446\\
-6.38669 -13.5724\\
-5.52187 -13.9466\\
-4.63525 -14.2658\\
-3.73035 -14.5287\\
-2.81072 -14.7343\\
-1.88 -14.8817\\
-0.941858 -14.9704\\
0 -15\\
0.941858 -14.9704\\
1.88 -14.8817\\
2.81072 -14.7343\\
3.73035 -14.5287\\
4.63525 -14.2658\\
5.52187 -13.9466\\
6.38669 -13.5724\\
7.22631 -13.1446\\
8.0374 -12.6649\\
8.81678 -12.1353\\
9.56136 -11.5577\\
10.2682 -10.9345\\
10.9345 -10.2682\\
11.5577 -9.56136\\
12.1353 -8.81678\\
12.6649 -8.0374\\
13.1446 -7.22631\\
13.5724 -6.38669\\
13.9466 -5.52187\\
14.2658 -4.63525\\
14.5287 -3.73035\\
14.7343 -2.81072\\
14.8817 -1.88\\
14.9704 -0.941858\\
15 0\\
};
\node[above right, align=left, text=black]
at (axis cs:2.122,15.102) { 15};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
20 0\\
19.9605 1.25581\\
19.8423 2.50666\\
19.6457 3.74763\\
19.3717 4.9738\\
19.0211 6.18034\\
18.5955 7.36249\\
18.0965 8.51559\\
17.5261 9.63507\\
16.8866 10.7165\\
16.1803 11.7557\\
15.4103 12.7485\\
14.5794 13.6909\\
13.6909 14.5794\\
12.7485 15.4103\\
11.7557 16.1803\\
10.7165 16.8866\\
9.63507 17.5261\\
8.51559 18.0965\\
7.36249 18.5955\\
6.18034 19.0211\\
4.9738 19.3717\\
3.74763 19.6457\\
2.50666 19.8423\\
1.25581 19.9605\\
0 20\\
-1.25581 19.9605\\
-2.50666 19.8423\\
-3.74763 19.6457\\
-4.9738 19.3717\\
-6.18034 19.0211\\
-7.36249 18.5955\\
-8.51559 18.0965\\
-9.63507 17.5261\\
-10.7165 16.8866\\
-11.7557 16.1803\\
-12.7485 15.4103\\
-13.6909 14.5794\\
-14.5794 13.6909\\
-15.4103 12.7485\\
-16.1803 11.7557\\
-16.8866 10.7165\\
-17.5261 9.63507\\
-18.0965 8.51559\\
-18.5955 7.36249\\
-19.0211 6.18034\\
-19.3717 4.9738\\
-19.6457 3.74763\\
-19.8423 2.50666\\
-19.9605 1.25581\\
-20 0\\
-19.9605 -1.25581\\
-19.8423 -2.50666\\
-19.6457 -3.74763\\
-19.3717 -4.9738\\
-19.0211 -6.18034\\
-18.5955 -7.36249\\
-18.0965 -8.51559\\
-17.5261 -9.63507\\
-16.8866 -10.7165\\
-16.1803 -11.7557\\
-15.4103 -12.7485\\
-14.5794 -13.6909\\
-13.6909 -14.5794\\
-12.7485 -15.4103\\
-11.7557 -16.1803\\
-10.7165 -16.8866\\
-9.63507 -17.5261\\
-8.51559 -18.0965\\
-7.36249 -18.5955\\
-6.18034 -19.0211\\
-4.9738 -19.3717\\
-3.74763 -19.6457\\
-2.50666 -19.8423\\
-1.25581 -19.9605\\
0 -20\\
1.25581 -19.9605\\
2.50666 -19.8423\\
3.74763 -19.6457\\
4.9738 -19.3717\\
6.18034 -19.0211\\
7.36249 -18.5955\\
8.51559 -18.0965\\
9.63507 -17.5261\\
10.7165 -16.8866\\
11.7557 -16.1803\\
12.7485 -15.4103\\
13.6909 -14.5794\\
14.5794 -13.6909\\
15.4103 -12.7485\\
16.1803 -11.7557\\
16.8866 -10.7165\\
17.5261 -9.63507\\
18.0965 -8.51559\\
18.5955 -7.36249\\
19.0211 -6.18034\\
19.3717 -4.9738\\
19.6457 -3.74763\\
19.8423 -2.50666\\
19.9605 -1.25581\\
20 0\\
};
\node[above right, align=left, text=black]
at (axis cs:2.818,20.053) { 20};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-17.3205 -10\\
17.3205 10\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-10 -17.3205\\
10 17.3205\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
-1.22465e-15 -20\\
1.22465e-15 20\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
10 -17.3205\\
-10 17.3205\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
17.3205 -10\\
-17.3205 10\\
};
\addplot [color=white!83!darkgray,solid,line width=1.0pt,forget plot]
table[row sep=crcr]{%
20 -2.44929e-15\\
-20 2.44929e-15\\
};
\node[align=center, text=black]
at (axis cs:19.053,11) {30};
\node[align=center, text=black]
at (axis cs:-19.053,-11) {210};
\node[align=center, text=black]
at (axis cs:11,19.053) {60};
\node[align=center, text=black]
at (axis cs:-11,-19.053) {240};
\node[align=center, text=black]
at (axis cs:0,22) {90};
\node[align=center, text=black]
at (axis cs:-0,-22) {270};
\node[align=center, text=black]
at (axis cs:-11,19.053) {120};
\node[align=center, text=black]
at (axis cs:11,-19.053) {300};
\node[align=center, text=black]
at (axis cs:-19.053,11) {150};
\node[align=center, text=black]
at (axis cs:19.053,-11) {330};
\node[align=center, text=black]
at (axis cs:-22,0) {180};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-0.968109 -0.250529\\
-0.754445 -0.277872\\
-0.968109 -0.250529\\
-0.79453 -0.122975\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-1.72878 -1.00565\\
-1.30257 -0.942824\\
-1.72878 -1.00565\\
-1.46347 -0.666219\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
2.99407 0.188513\\
2.38018 0.390336\\
2.99407 0.188513\\
2.41034 -0.0887155\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-2.27645 3.28904\\
-2.08428 2.44912\\
-2.27645 3.28904\\
-1.55803 2.81335\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-1.04966 4.88858\\
-1.23082 3.82689\\
-1.04966 4.88858\\
-0.448643 3.99484\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
5.81309 -1.48592\\
4.76935 -0.723689\\
5.81309 -1.48592\\
4.5316 -1.65378\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
0.171613 -6.9979\\
0.697122 -5.58459\\
0.171613 -6.9979\\
-0.422541 -5.61205\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
4.88337 -6.33661\\
4.41363 -4.67862\\
4.88337 -6.33661\\
3.39977 -5.45996\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
7.63301 4.76835\\
5.72494 4.42532\\
7.63301 4.76835\\
6.48787 3.20404\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
5.30892 8.47439\\
3.56919 7.20423\\
5.30892 8.47439\\
4.92509 6.3548\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
10.9957 0.305843\\
8.77213 1.12433\\
10.9957 0.305843\\
8.82107 -0.634985\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
6.67336 -9.97328\\
6.13655 -7.44475\\
6.67336 -9.97328\\
4.54082 -8.51249\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
10.8631 -7.14093\\
9.26176 -4.84369\\
10.8631 -7.14093\\
8.11921 -6.58179\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
9.14319 10.602\\
6.46639 9.21304\\
9.14319 10.602\\
8.16271 7.75013\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
0.912501 14.9722\\
-0.467777 12.0508\\
0.912501 14.9722\\
1.92778 11.9048\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
15.4371 4.2065\\
12.0132 4.60017\\
15.4371 4.2065\\
12.6862 2.13023\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-2.67662 -16.788\\
-0.798256 -13.6445\\
-2.67662 -16.788\\
-3.48433 -13.2162\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-9.61462 -15.2171\\
-6.47433 -12.9428\\
-9.61462 -15.2171\\
-8.90906 -11.4045\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
18.9522 -1.34732\\
15.2695 0.43832\\
18.9522 -1.34732\\
15.054 -2.59403\\
};
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
-16.7562 10.9192\\
-14.2785 7.3949\\
-16.7562 10.9192\\
-12.5314 10.0759\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 25,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -4,
ymax= 4,
axis background/.style={fill=white},
legend style={at={(0.03,0.97)},anchor=north west,legend cell align=left,align=left,draw=black}
]
\addplot[ycomb,color=mycolor1,solid,mark=*,mark options={solid,fill=blue}] plot table[row sep=crcr] {%
0 1\\
1 0.503775\\
2 -0.361781\\
3 -0.802472\\
4 -0.494013\\
5 0.199893\\
6 0.630877\\
7 0.46186\\
8 -0.0831109\\
9 -0.485261\\
10 -0.416671\\
11 0.00204916\\
12 0.364301\\
13 0.365269\\
14 0.051319\\
15 -0.265843\\
16 -0.312465\\
17 -0.0837105\\
18 0.187301\\
19 0.26149\\
20 0.100632\\
21 -0.125937\\
22 -0.214373\\
23 -0.106507\\
24 0.0790559\\
25 0.172245\\
};
\addlegendentry{exp(-.07x)*cos(x)};
\addplot[ycomb,color=mycolor2,solid,mark=square*,mark options={solid,fill=red}] plot table[row sep=crcr] {%
0 1\\
1 0.568004\\
2 -0.459913\\
3 -1.15021\\
4 -0.798362\\
5 0.364229\\
6 1.29609\\
7 1.06984\\
8 -0.217061\\
9 -1.42894\\
10 -1.3834\\
11 0.00767085\\
12 1.5376\\
13 1.73825\\
14 0.275355\\
15 -1.60826\\
16 -2.13131\\
17 -0.643785\\
18 1.62412\\
19 2.5565\\
20 1.10928\\
21 -1.56522\\
22 -3.00405\\
23 -1.68279\\
24 1.40832\\
25 3.45964\\
};
\addlegendentry{exp(.05*x)*cos(x)};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 25,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -4,
ymax= 4,
axis background/.style={fill=white},
legend style={at={(0.03,0.97)},anchor=north west,legend cell align=left,align=left,draw=black}
]
\addplot[ycomb,color=mycolor1,solid,mark=*,mark options={solid,fill=mycolor1}] plot table[row sep=crcr] {%
0 1\\
1 0.503775\\
2 -0.361781\\
3 -0.802472\\
4 -0.494013\\
5 0.199893\\
6 0.630877\\
7 0.46186\\
8 -0.0831109\\
9 -0.485261\\
10 -0.416671\\
11 0.00204916\\
12 0.364301\\
13 0.365269\\
14 0.051319\\
15 -0.265843\\
16 -0.312465\\
17 -0.0837105\\
18 0.187301\\
19 0.26149\\
20 0.100632\\
21 -0.125937\\
22 -0.214373\\
23 -0.106507\\
24 0.0790559\\
25 0.172245\\
};
\addlegendentry{exp(-.07x)*cos(x)};
\addplot[ycomb,color=mycolor2,solid,mark=*,mark options={solid,fill=mycolor2}] plot table[row sep=crcr] {%
0 1\\
1 0.568004\\
2 -0.459913\\
3 -1.15021\\
4 -0.798362\\
5 0.364229\\
6 1.29609\\
7 1.06984\\
8 -0.217061\\
9 -1.42894\\
10 -1.3834\\
11 0.00767085\\
12 1.5376\\
13 1.73825\\
14 0.275355\\
15 -1.60826\\
16 -2.13131\\
17 -0.643785\\
18 1.62412\\
19 2.5565\\
20 1.10928\\
21 -1.56522\\
22 -3.00405\\
23 -1.68279\\
24 1.40832\\
25 3.45964\\
};
\addlegendentry{exp(.05*x)*cos(x)};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{1.00000,0.00000,1.00000}%
\definecolor{mycolor2}{rgb}{0.21783,0.72504,0.61926}%
\definecolor{mycolor3}{rgb}{0.97630,0.98310,0.05380}%
\definecolor{mycolor4}{rgb}{0.20810,0.16630,0.52920}%
\definecolor{mycolor5}{rgb}{0.00000,1.00000,1.00000}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0\figureWidth,0.581\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-6.25,
xmax=6.25,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 100,
axis background/.style={fill=white}
]
\addplot[ybar,bar width=0.333,bar shift=-0.222,draw=none,fill=mycolor1,area legend] plot table[row sep=crcr] {%
-5 42\\
-4 76\\
-3 96\\
-2 99\\
-1 83\\
0 51\\
1 11\\
2 32\\
3 69\\
4 93\\
5 100\\
};
\addplot[ybar,bar width=0.333,draw=black,fill=mycolor2,area legend] plot table[row sep=crcr] {%
-5 100\\
-4 1\\
-3 100\\
-2 2\\
-1 100\\
0 3\\
1 100\\
2 4\\
3 100\\
4 4\\
5 100\\
};
\addplot[ybar,bar width=0.333,bar shift=0.222,draw=black,fill=mycolor3,area legend] plot table[row sep=crcr] {%
-5 66\\
-4 99\\
-3 84\\
-2 27\\
-1 43\\
0 92\\
1 95\\
2 52\\
3 17\\
4 77\\
5 100\\
};
\end{axis}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0.54\figureWidth,0.581\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 100,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -6,
ymax= 6,
axis background/.style={fill=white}
]
\addplot[xbar,bar width=0.289,bar shift=-0.222,draw=black,fill=mycolor4,area legend] plot table[row sep=crcr] {%
42 -5\\
76 -4\\
96 -3\\
99 -2\\
83 -1\\
51 0\\
11 1\\
32 2\\
69 3\\
93 4\\
100 5\\
};
\addplot[xbar,bar width=0.289,draw=black,fill=mycolor2,area legend] plot table[row sep=crcr] {%
100 -5\\
1 -4\\
100 -3\\
2 -2\\
100 -1\\
3 0\\
100 1\\
4 2\\
100 3\\
4 4\\
100 5\\
};
\addplot[xbar,bar width=0.289,bar shift=0.222,draw=black,fill=mycolor3,area legend] plot table[row sep=crcr] {%
66 -5\\
99 -4\\
84 -3\\
27 -2\\
43 -1\\
92 0\\
95 1\\
52 2\\
17 3\\
77 4\\
100 5\\
};
\end{axis}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
bar width=0.8,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 6,
xtick={1, 2, 3, 4, 5},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 20,
axis background/.style={fill=white}
]
\addplot[ybar stacked,draw=black,fill=mycolor4,area legend] plot table[row sep=crcr] {%
1 1\\
2 1\\
3 1\\
4 4\\
5 4\\
};
\addplot[ybar stacked,draw=black,fill=mycolor2,area legend] plot table[row sep=crcr] {%
1 1\\
2 2\\
3 1\\
4 5\\
5 5\\
};
\addplot[ybar stacked,draw=black,fill=mycolor3,area legend] plot table[row sep=crcr] {%
1 1\\
2 2\\
3 1\\
4 7\\
5 8\\
};
\end{axis}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0.54\figureWidth,0\figureHeight)},
scale only axis,
bar width=0.75,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 20,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 6,
ytick={1, 2, 3, 4, 5},
axis background/.style={fill=white}
]
\addplot[xbar stacked,draw=none,fill=mycolor5,area legend] plot table[row sep=crcr] {%
1 1\\
1 2\\
1 3\\
4 4\\
4 5\\
};
\addplot[xbar stacked,draw=black,fill=mycolor2,area legend] plot table[row sep=crcr] {%
1 1\\
2 2\\
1 3\\
5 4\\
5 5\\
};
\addplot[xbar stacked,draw=black,fill=mycolor3,area legend] plot table[row sep=crcr] {%
1 1\\
2 2\\
1 3\\
7 4\\
8 5\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
x dir=reverse,
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 1,
ymax= 2.8,
axis background/.style={fill=white},
legend style={at={(0.03,0.03)},anchor=south west,legend cell align=left,align=left,draw=black}
]
\addplot [color=mycolor1,solid]
table[row sep=crcr]{%
0 1\\
0.05 1.05127\\
0.1 1.10517\\
0.15 1.16183\\
0.2 1.2214\\
0.25 1.28403\\
0.3 1.34986\\
0.35 1.41907\\
0.4 1.49182\\
0.45 1.56831\\
0.5 1.64872\\
0.55 1.73325\\
0.6 1.82212\\
0.65 1.91554\\
0.7 2.01375\\
0.75 2.117\\
0.8 2.22554\\
0.85 2.33965\\
0.9 2.4596\\
0.95 2.58571\\
1 2.71828\\
};
\addlegendentry{data1};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 12,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 16,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,only marks,mark=*,mark options={solid},forget plot]
plot [error bars/.cd, y dir = both, y explicit]
table[row sep=crcr, y error plus index=2, y error minus index=3]{%
1 1 1.1 0.18\\
2 2 0.7 0.22\\
3 3 1.4 0.4\\
4 4 1.1 0.18\\
5 5 4.3 1.38\\
6 6 3.8 1.52\\
7 7 6.1 3.72\\
8 8 7.5 3.6\\
9 9 3.8 2.3\\
10 10 2.8 1.1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 25,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 250,
axis background/.style={fill=white}
]
\addplot [color=red,only marks,mark=x,mark options={solid},forget plot]
plot [error bars/.cd, y dir = both, y explicit]
table[row sep=crcr, y error plus index=2, y error minus index=3]{%
1 10.3333 0.942809 0.942809\\
2 10.3333 2.49444 2.49444\\
3 17 2.44949 2.44949\\
4 11 1.63299 1.63299\\
5 54.3333 10.873 10.873\\
6 53.3333 16.3571 16.3571\\
7 126.333 51.1881 51.1881\\
8 130 43.0116 43.0116\\
9 80.3333 31.8991 31.8991\\
10 39.6667 11.3235 11.3235\\
11 12.6667 0.942809 0.942809\\
12 25 5.09902 5.09902\\
13 22 4.96655 4.96655\\
14 16.6667 1.24722 1.24722\\
15 34.3333 11.8977 11.8977\\
16 29.6667 15.195 15.195\\
17 66.3333 20.4342 20.4342\\
18 91.3333 42.3504 42.3504\\
19 63 19.6129 19.6129\\
20 172 61.422 61.422\\
21 53.6667 13.8163 13.8163\\
22 12.6667 1.69967 1.69967\\
23 12.3333 2.49444 2.49444\\
24 8.66667 1.24722 1.24722\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0\figureWidth,0.581\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.841471\\
2 0.989358\\
4 0.920026\\
5 -0.61604\\
};
\end{axis}
\begin{axis}[%
width=0.411\figureWidth,
height=0.419\figureHeight,
at={(0.54\figureWidth,0.581\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.4,
ymax= 0.8,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.540302\\
2 -0.1455\\
3 -0.292139\\
4 0.391857\\
5 0.787715\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.419\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -4,
ymax= 2,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 1.55741\\
2 -2.18504\\
3 -0.142547\\
4 1.15782\\
5 -3.38052\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=\figureWidth,
height=0.176\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=2500,
xlabel={\$x\$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -5,
ymax= 5,
ylabel={\$n\$},
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 -3\\
2048 4\\
};
\end{axis}
\begin{axis}[%
width=\figureWidth,
height=0.706\figureHeight,
at={(0\figureWidth,0.176\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=2500,
xtick={\empty},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -3,
ymax= 4,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 -3\\
2048 4\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 2,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 2,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot[area legend,solid,line width=10.0pt,draw=black,fill=red,forget plot]
table[row sep=crcr] {%
x y\\
1 1\\
1 2\\
2 2\\
2 1\\
}--cycle;
\addplot [color=green,line width=10.0pt,mark size=7.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
0 0\\
};
\addplot [color=blue,line width=1.0pt,mark size=7.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
0 0\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.333\figureWidth,
height=0.333\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.540302\\
2 0.155944\\
3 -0.160557\\
4 -0.416147\\
5 -0.617273\\
};
\end{axis}
\begin{axis}[%
width=0.333\figureWidth,
height=0.333\figureHeight,
at={(0.333\figureWidth,0.444\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=0.75,
ymax= 1,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.841471\\
2 0.987766\\
3 0.987027\\
4 0.909297\\
5 0.786749\\
};
\end{axis}
\begin{axis}[%
width=0.333\figureWidth,
height=0.333\figureHeight,
at={(0.667\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -10,
ymax= 10,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 1.55741\\
2 6.33412\\
3 -6.14753\\
4 -2.18504\\
5 -1.27456\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=0.65\figureHeight,
at={(0\figureWidth,0.35\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 14,
xlabel={Time/s},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-1.5,
ymax= 1.5,
ylabel={Voltage/V},
axis background/.style={fill=white},
title style={font=\bfseries},
title={Time traces},
legend style={legend cell align=left,align=left,fill=none,draw=none}
]
\addplot [color=blue,solid]
table[row sep=crcr]{%
0 0\\
0.125664 0.210833\\
0.251327 0.330644\\
0.376991 0.387485\\
0.502655 0.546239\\
0.628319 0.636253\\
0.753982 0.754827\\
0.879646 0.769157\\
1.00531 0.811141\\
1.13097 1.00316\\
1.25664 0.861151\\
1.3823 0.882287\\
1.50796 1.00045\\
1.63363 0.947451\\
1.75929 0.987708\\
1.88496 0.852309\\
2.01062 1.00247\\
2.13628 0.932243\\
2.26195 0.837259\\
2.38761 0.637964\\
2.51327 0.490698\\
2.63894 0.469581\\
2.7646 0.368694\\
2.89027 0.331732\\
3.01593 0.115641\\
3.14159 0.00834204\\
3.26726 -0.210572\\
3.39292 -0.256032\\
3.51858 -0.346601\\
3.64425 -0.382472\\
3.76991 -0.528571\\
3.89557 -0.763316\\
4.02124 -0.846992\\
4.1469 -0.94432\\
4.27257 -0.813357\\
4.39823 -0.984307\\
4.52389 -0.960618\\
4.64956 -0.967074\\
4.77522 -0.904704\\
4.90088 -0.882467\\
5.02655 -1.03342\\
5.15221 -0.834094\\
5.27788 -0.797433\\
5.40354 -0.866343\\
5.5292 -0.682269\\
5.65487 -0.602228\\
5.78053 -0.551928\\
5.90619 -0.402459\\
6.03186 -0.286552\\
6.15752 -0.186989\\
6.28319 -0.032789\\
6.40885 0.101368\\
6.53451 0.167902\\
6.66018 0.375319\\
6.78584 0.510727\\
6.9115 0.487849\\
7.03717 0.760834\\
7.16283 0.864409\\
7.28849 0.798178\\
7.41416 0.993418\\
7.53982 1.00807\\
7.66549 1.06452\\
7.79115 0.951263\\
7.91681 0.908986\\
8.04248 1.01575\\
8.16814 0.887384\\
8.2938 0.909951\\
8.41947 0.74917\\
8.54513 0.870078\\
8.6708 0.741509\\
8.79646 0.685484\\
8.92212 0.386344\\
9.04779 0.291455\\
9.17345 0.154846\\
9.29911 0.220504\\
9.42478 0.068285\\
9.55044 -0.0258407\\
9.67611 -0.348447\\
9.80177 -0.391891\\
9.92743 -0.567484\\
10.0531 -0.521131\\
10.1788 -0.745969\\
10.3044 -0.770637\\
10.4301 -0.802497\\
10.5558 -0.812021\\
10.6814 -0.852159\\
10.8071 -1.07394\\
10.9327 -0.950831\\
11.0584 -0.988926\\
11.1841 -1.0527\\
11.3097 -1.00584\\
11.4354 -0.97997\\
11.5611 -0.841307\\
11.6867 -0.865762\\
11.8124 -0.783124\\
11.9381 -0.544108\\
12.0637 -0.581738\\
12.1894 -0.468122\\
12.315 -0.202145\\
12.4407 -0.224669\\
12.5664 -0.0972627\\
};
\addlegendentry{$\text{Mean V(t)}_\text{A}\text{ (}\sigma\text{ }\approx\text{ 0.7152)}$};
\addplot [color=red,solid]
table[row sep=crcr]{%
0 0.15\\
0.125664 0.121899\\
0.251327 0.235203\\
0.376991 0.502681\\
0.502655 0.432114\\
0.628319 0.515767\\
0.753982 0.758825\\
0.879646 0.661153\\
1.00531 0.728706\\
1.13097 0.854787\\
1.25664 0.866822\\
1.3823 0.935941\\
1.50796 0.84845\\
1.63363 1.03469\\
1.75929 1.03565\\
1.88496 0.926382\\
2.01062 0.894552\\
2.13628 0.775385\\
2.26195 0.835609\\
2.38761 0.599199\\
2.51327 0.579277\\
2.63894 0.409289\\
2.7646 0.504571\\
2.89027 0.348219\\
3.01593 0.273292\\
3.14159 -0.0496514\\
3.26726 -0.129195\\
3.39292 -0.304605\\
3.51858 -0.23402\\
3.64425 -0.442999\\
3.76991 -0.491751\\
3.89557 -0.743015\\
4.02124 -0.715454\\
4.1469 -0.864335\\
4.39823 -1.08582\\
4.52389 -1.1264\\
4.64956 -0.952543\\
4.77522 -1.08356\\
4.90088 -1.02278\\
5.02655 -0.934795\\
5.15221 -0.866009\\
5.27788 -0.777295\\
5.40354 -0.808459\\
5.5292 -0.581434\\
5.65487 -0.473383\\
5.78053 -0.526205\\
5.90619 -0.237755\\
6.03186 -0.112319\\
6.15752 -0.155635\\
6.28319 0.144472\\
6.40885 0.270848\\
6.53451 0.233571\\
6.66018 0.504314\\
6.78584 0.604256\\
6.9115 0.606795\\
7.03717 0.752342\\
7.16283 0.795548\\
7.28849 0.911753\\
7.41416 0.82657\\
7.53982 0.828454\\
7.66549 0.992699\\
7.79115 0.860029\\
7.91681 0.902904\\
8.04248 0.841565\\
8.16814 0.987715\\
8.2938 0.972824\\
8.41947 0.853779\\
8.54513 0.751822\\
8.6708 0.605496\\
8.79646 0.624566\\
8.92212 0.478595\\
9.04779 0.468774\\
9.17345 0.257961\\
9.29911 0.204461\\
9.42478 -0.0230559\\
9.55044 -0.0668421\\
9.67611 -0.197903\\
9.80177 -0.234542\\
9.92743 -0.403481\\
10.0531 -0.646882\\
10.3044 -0.879882\\
10.4301 -0.774786\\
10.5558 -0.97394\\
10.6814 -0.976697\\
10.8071 -0.98877\\
10.9327 -0.95947\\
11.0584 -0.948047\\
11.1841 -1.09978\\
11.3097 -0.907846\\
11.4354 -0.870716\\
11.5611 -0.965571\\
11.6867 -0.749425\\
11.8124 -0.664599\\
11.9381 -0.662292\\
12.0637 -0.453204\\
12.1894 -0.330989\\
12.315 -0.293382\\
12.4407 -0.0653957\\
12.5664 0.0732374\\
};
\addlegendentry{$\text{Mean V(t)}_\text{B}\text{ (}\sigma\text{ }\approx\text{ 0.7058)}$};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=0.301\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 14,
xlabel={Time/s},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.2,
ymax= 0.2,
ylabel={$\Delta\text{ V}$},
axis background/.style={fill=white},
title style={font=\bfseries},
title={Differential time traces},
legend style={legend cell align=left,align=left,fill=none,draw=none}
]
\addplot [color=black,solid]
table[row sep=crcr]{%
0 0.15\\
0.125664 -0.0889337\\
0.251327 -0.0954409\\
0.376991 0.115196\\
0.502655 -0.114125\\
0.628319 -0.120486\\
0.753982 0.00399756\\
0.879646 -0.108004\\
1.00531 -0.0824352\\
1.13097 -0.148375\\
1.25664 0.00567164\\
1.3823 0.0536535\\
1.50796 -0.152003\\
1.63363 0.0872378\\
1.75929 0.0479434\\
1.88496 0.0740735\\
2.01062 -0.107915\\
2.13628 -0.156858\\
2.26195 -0.00165057\\
2.38761 -0.0387646\\
2.51327 0.0885789\\
2.63894 -0.0602927\\
2.7646 0.135877\\
2.89027 0.0164874\\
3.01593 0.157651\\
3.14159 -0.0579935\\
3.26726 0.0813769\\
3.39292 -0.0485726\\
3.51858 0.112581\\
3.64425 -0.0605271\\
3.76991 0.0368196\\
3.89557 0.0203016\\
4.02124 0.131538\\
4.1469 0.0799843\\
4.27257 -0.163755\\
4.39823 -0.10151\\
4.52389 -0.165782\\
4.64956 0.0145311\\
4.77522 -0.178857\\
4.90088 -0.140313\\
5.02655 0.0986248\\
5.15221 -0.031915\\
5.27788 0.0201383\\
5.40354 0.0578845\\
5.5292 0.100835\\
5.65487 0.128845\\
5.78053 0.0257232\\
5.90619 0.164704\\
6.03186 0.174232\\
6.15752 0.031354\\
6.28319 0.177261\\
6.40885 0.16948\\
6.53451 0.0656687\\
6.66018 0.128995\\
6.78584 0.0935283\\
6.9115 0.118947\\
7.03717 -0.00849212\\
7.16283 -0.0688602\\
7.28849 0.113575\\
7.41416 -0.166848\\
7.53982 -0.179621\\
7.66549 -0.0718211\\
7.79115 -0.0912338\\
7.91681 -0.00608235\\
8.04248 -0.174189\\
8.16814 0.100331\\
8.2938 0.0628735\\
8.41947 0.104609\\
8.54513 -0.118256\\
8.6708 -0.136013\\
8.79646 -0.0609176\\
8.92212 0.0922512\\
9.04779 0.177319\\
9.17345 0.103116\\
9.29911 -0.016043\\
9.42478 -0.0913409\\
9.55044 -0.0410014\\
9.67611 0.150544\\
9.92743 0.164003\\
10.0531 -0.12575\\
10.1788 -0.0143528\\
10.3044 -0.109245\\
10.4301 0.0277111\\
10.5558 -0.16192\\
10.6814 -0.124538\\
10.8071 0.0851661\\
10.9327 -0.00863919\\
11.0584 0.0408786\\
11.1841 -0.0470754\\
11.3097 0.09799\\
11.4354 0.109253\\
11.5611 -0.124264\\
11.6867 0.116337\\
11.8124 0.118526\\
11.9381 -0.118184\\
12.0637 0.128534\\
12.1894 0.137133\\
12.315 -0.091237\\
12.4407 0.159273\\
12.5664 0.1705\\
};
\addlegendentry{$\Delta\text{ V(t)}$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.982\figureWidth,
height=0.51\figureHeight,
at={(0\figureWidth,0.49\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={white!40!black},
every x tick label/.append style={font=\color{white!40!black}},
xmode=log,
xmin=1000,
xmax=100000,
xtick={1000,10000,100000},
xticklabels={\empty},
xminorticks=true,
xmajorgrids,
xminorgrids,
every outer y axis line/.append style={white!40!black},
every y tick label/.append style={font=\color{white!40!black}},
ymin=-100,
ymax= 100,
ylabel={Magnitude (dB)},
ymajorgrids,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,line width=1.5pt,forget plot]
table[row sep=crcr]{%
1000 0.041843\\
1158.95 0.0562717\\
1318.62 0.07295\\
1479.69 0.0920103\\
1637.62 0.112902\\
1804.08 0.137308\\
1969.22 0.163969\\
2139.59 0.194067\\
2314.01 0.227647\\
2491.13 0.264664\\
2681.81 0.307858\\
2873.81 0.354929\\
3079.56 0.409449\\
3300.03 0.472682\\
3520.03 0.540887\\
3754.69 0.619454\\
4005 0.710123\\
4271.99 0.814983\\
4556.79 0.936559\\
4838.21 1.0671\\
5137.01 1.2177\\
5454.27 1.39204\\
5791.12 1.5947\\
6148.78 1.83138\\
6498.5 2.08632\\
6868.1 2.38379\\
7258.73 2.73328\\
7636.3 3.10999\\
8033.5 3.5538\\
8451.37 4.08216\\
8850.07 4.65622\\
9267.59 5.34628\\
9660.17 6.09767\\
10069.4 7.0153\\
10447.7 8.0222\\
10840.1 9.28486\\
11195.6 10.6971\\
11562.8 12.5561\\
11887.1 14.7387\\
12164.2 17.3032\\
12390.6 20.2969\\
12563.2 23.6904\\
12738.1 29.6729\\
12856.1 39.6724\\
12915.5 59.3667\\
13035.1 32.2247\\
13216.6 24.3179\\
13462.6 19.0345\\
13776.5 14.9103\\
14228.3 10.9473\\
14762.8 7.6057\\
15459.3 4.31588\\
16338.5 1.05845\\
17508.3 -2.46126\\
19737.6 -7.99897\\
22046.7 -13.2523\\
23516.4 -16.7663\\
24739.6 -20.0551\\
25787.6 -23.4065\\
26633.3 -26.8017\\
27254.3 -30.0535\\
27761.5 -33.6649\\
28148.1 -37.6469\\
28540.1 -44.7278\\
28672 -49.2853\\
28804.4 -59.194\\
28937.5 -58.3668\\
29205.6 -44.8508\\
29612.3 -38.227\\
30163.3 -33.7285\\
30866.6 -30.3475\\
31732.3 -27.6765\\
32772.9 -25.5047\\
33847.7 -23.9026\\
35119.3 -22.4984\\
36607 -21.2727\\
38157.6 -20.3015\\
39957.8 -19.4321\\
41842.9 -18.7233\\
44019.4 -18.0817\\
46309 -17.55\\
48942.9 -17.0666\\
51726.6 -16.6621\\
54668.6 -16.3203\\
58044.9 -16.0067\\
61629.7 -15.7411\\
65435.9 -15.5145\\
69477.1 -15.3203\\
74108.8 -15.1411\\
79049.3 -14.9878\\
84319.1 -14.8562\\
89940.2 -14.7429\\
95936.1 -14.645\\
100000 -14.5892\\
};
\addplot [color=mycolor2,solid,line width=1.5pt,forget plot]
table[row sep=crcr]{%
1000 0.0416839\\
1158.95 0.0560568\\
1318.62 0.0726698\\
1479.69 0.0916547\\
1637.62 0.112463\\
1804.08 0.136769\\
1969.22 0.163321\\
2139.59 0.193292\\
2314.01 0.226728\\
2491.13 0.263582\\
2681.81 0.306583\\
2873.81 0.353437\\
3079.56 0.407698\\
3300.03 0.470621\\
3520.03 0.538478\\
3754.69 0.616629\\
4005 0.706795\\
4271.99 0.811042\\
4556.79 0.931865\\
4838.21 1.06154\\
5137.01 1.21108\\
5454.27 1.3841\\
5791.12 1.58508\\
6148.78 1.8196\\
6498.5 2.07197\\
6868.1 2.36609\\
7258.73 2.71112\\
7671.58 3.11911\\
8070.62 3.5621\\
8490.42 4.08841\\
8890.97 4.65865\\
9310.41 5.34149\\
9749.65 6.17204\\
10162.7 7.08847\\
10593.1 8.22412\\
10991.1 9.48878\\
11404 11.093\\
11778 12.8829\\
12220.4 15.4691\\
12679.5 18.0337\\
12797 18.3376\\
12856.1 18.3868\\
12915.5 18.359\\
13035.1 18.0702\\
13216.6 17.1401\\
13650.1 13.9564\\
14360.1 9.24399\\
15037.6 5.82625\\
15892.8 2.43828\\
16952.3 -0.944824\\
18589.6 -5.25256\\
22457 -13.9587\\
23954.1 -17.4222\\
25316.5 -20.8882\\
26633.3 -24.6465\\
28278.2 -29.0939\\
28672 -29.6456\\
28937.5 -29.8069\\
29071.2 -29.8219\\
29205.6 -29.7946\\
29476.1 -29.6237\\
29886.5 -29.1356\\
30866.6 -27.481\\
32622.2 -24.7072\\
34004.1 -23.0849\\
35444.6 -21.7969\\
37116.7 -20.6564\\
38867.8 -19.7402\\
40889.5 -18.9227\\
43016.4 -18.2544\\
45253.9 -17.6998\\
47827.7 -17.1951\\
50548 -16.7729\\
53422.9 -16.4161\\
56722.3 -16.089\\
60225.4 -15.812\\
63944.9 -15.5758\\
67894.1 -15.3734\\
72420.2 -15.1868\\
77248.1 -15.0273\\
82397.9 -14.8903\\
87890.9 -14.7725\\
93750.2 -14.6707\\
100000 -14.5826\\
};
\end{axis}
\begin{axis}[%
width=0.982\figureWidth,
height=0.453\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={white!40!black},
every x tick label/.append style={font=\color{white!40!black}},
xmode=log,
xmin=1000,
xmax=100000,
xminorticks=true,
xmajorgrids,
xminorgrids,
every outer y axis line/.append style={white!40!black},
every y tick label/.append style={font=\color{white!40!black}},
ymin=-181.8,
ymax= 1.8,
ytick={-180, -135, -90, -45, 0},
ylabel={Phase (deg)},
ymajorgrids,
axis background/.style={fill=white},
legend style={at={(0.03,0.03)},anchor=south west,legend cell align=left,align=left,draw=black}
]
\addplot [color=mycolor1,solid,line width=1.5pt]
table[row sep=crcr]{%
1000 0\\
12856.1 0\\
12915.5 -180\\
28804.4 -180\\
28937.5 0\\
100000 0\\
};
\addlegendentry{Perfect LCL};
\addplot [color=mycolor2,solid,line width=1.5pt]
table[row sep=crcr]{%
1000 -0.174165\\
1158.95 -0.202762\\
1324.71 -0.233023\\
1500.29 -0.265637\\
1683.55 -0.300384\\
1880.5 -0.338641\\
2081.22 -0.378732\\
2292.77 -0.422347\\
2514.2 -0.469682\\
2744.34 -0.520923\\
2981.77 -0.576239\\
3224.84 -0.635759\\
3471.69 -0.699551\\
3737.43 -0.772453\\
4005 -0.85083\\
4291.73 -0.941063\\
4577.84 -1.03838\\
4860.56 -1.14263\\
5160.75 -1.26332\\
5479.47 -1.40435\\
5791.12 -1.55703\\
6120.5 -1.7368\\
6438.86 -1.9315\\
6773.78 -2.16243\\
7126.12 -2.43966\\
7462.3 -2.74349\\
7814.35 -3.11161\\
8145.37 -3.51467\\
8490.42 -4.00753\\
8850.07 -4.6207\\
9182.54 -5.30295\\
9527.5 -6.16361\\
9839.95 -7.11982\\
10162.7 -8.3442\\
10495.9 -9.9572\\
10790.3 -11.7983\\
11092.9 -14.2851\\
11351.5 -17.1128\\
11616.2 -21.0207\\
11887.1 -26.6772\\
12108.3 -33.2576\\
12333.6 -42.7769\\
12563.2 -56.6525\\
12915.5 -86.3528\\
13339.1 -119.676\\
13650.1 -134.519\\
13968.4 -143.768\\
14294 -149.743\\
14694.9 -154.455\\
15107 -157.597\\
15530.7 -159.784\\
15966.3 -161.348\\
16414 -162.479\\
16874.4 -163.292\\
17347.6 -163.86\\
17752.1 -164.179\\
18166 -164.378\\
18504.1 -164.457\\
18675.5 -164.471\\
18761.7 -164.472\\
18848.4 -164.469\\
19023 -164.451\\
19287.9 -164.393\\
19646.9 -164.259\\
20105 -163.996\\
20573.7 -163.621\\
21150.7 -163.007\\
21743.9 -162.183\\
22353.7 -161.101\\
22980.6 -159.689\\
23625.1 -157.841\\
24287.6 -155.385\\
24968.8 -152.05\\
25669 -147.379\\
26267.5 -141.915\\
26880 -134.246\\
27506.8 -123.302\\
28148.1 -108.016\\
30724.7 -43.324\\
31586.4 -33.0582\\
32472.2 -26.2249\\
33382.9 -21.4857\\
34477.6 -17.5776\\
35608.3 -14.7644\\
36946 -12.3987\\
38334 -10.6269\\
39774 -9.2557\\
41458.9 -8.04582\\
43215.1 -7.08652\\
45253.9 -6.23161\\
47388.8 -5.53941\\
49853.7 -4.91678\\
52446.9 -4.40343\\
55429.9 -3.93772\\
58582.5 -3.54758\\
62200.5 -3.19086\\
66041.9 -2.88781\\
70444.6 -2.60872\\
75140.8 -2.36867\\
80520.4 -2.14617\\
86285.1 -1.95274\\
92889.8 -1.77247\\
100000 -1.61432\\
};
\addlegendentry{ Real LCL};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.982\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={white!40!black},
every x tick label/.append style={font=\color{white!40!black}},
xmin= -4,
xmax= 1,
every outer y axis line/.append style={white!40!black},
every y tick label/.append style={font=\color{white!40!black}},
ymin=-0.8,
ymax= 0.8,
axis background/.style={fill=white}
]
\addplot [color=white!40!black,dotted,forget plot]
table[row sep=crcr]{%
-4.5 0\\
-1 0\\
0 0\\
1 0\\
1.5 0\\
};
\addplot [color=white!40!black,dotted,forget plot]
table[row sep=crcr]{%
0 -0.96\\
0 0\\
0 0.96\\
};
\addplot [color=white,solid,forget plot]
table[row sep=crcr]{%
0 0\\
};
\addplot [color=mycolor1,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
-1 0\\
};
\addplot [color=mycolor1,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
-0.375 0.330719\\
-0.375 -0.330719\\
};
\addplot [color=blue,solid,forget plot]
table[row sep=crcr]{%
-0.375 0.330719\\
-0.423734 0.409777\\
-0.461314 0.458058\\
-0.501351 0.501347\\
-0.543152 0.539713\\
-0.598783 0.582258\\
-0.645755 0.611973\\
-0.702586 0.641518\\
-0.771347 0.669117\\
-0.85454 0.691984\\
-0.902472 0.700349\\
-0.955195 0.705686\\
-1.01319 0.706984\\
-1.07698 0.702904\\
-1.14714 0.691628\\
-1.22432 0.670581\\
-1.30922 0.635913\\
-1.4026 0.581306\\
-1.50531 0.494635\\
-1.5618 0.429399\\
-1.61829 0.343105\\
-1.66203 0.248425\\
-1.6839 0.179658\\
-1.70577 0.0433833\\
-1.70711 0\\
-1 0\\
};
\addplot [color=black!50!green,solid,forget plot]
table[row sep=crcr]{%
-0.375 -0.330719\\
-0.423734 -0.409777\\
-0.461314 -0.458058\\
-0.501351 -0.501347\\
-0.543152 -0.539713\\
-0.598783 -0.582258\\
-0.645755 -0.611973\\
-0.702586 -0.641518\\
-0.771347 -0.669117\\
-0.85454 -0.691984\\
-0.902472 -0.700349\\
-0.955195 -0.705686\\
-1.01319 -0.706984\\
-1.07698 -0.702904\\
-1.14714 -0.691628\\
-1.22432 -0.670581\\
-1.30922 -0.635913\\
-1.4026 -0.581306\\
-1.50531 -0.494635\\
-1.5618 -0.429399\\
-1.61829 -0.343105\\
-1.66203 -0.248425\\
-1.6839 -0.179658\\
-1.70577 -0.0433833\\
-1.70711 0\\
-4.5 0\\
};
\addplot [color=white!40!black,dotted,forget plot]
table[row sep=crcr]{%
0 0\\
-0 4.5\\
nan nan\\
0 0\\
-2.025 4.01863\\
nan nan\\
0 0\\
-3.33 3.02673\\
nan nan\\
0 0\\
-3.915 2.21873\\
nan nan\\
0 0\\
-4.2075 1.59591\\
nan nan\\
0 0\\
-4.338 1.19656\\
nan nan\\
0 0\\
-4.428 0.801758\\
nan nan\\
0 0\\
-4.4685 0.531515\\
nan nan\\
0 0\\
-4.49325 0.246383\\
nan nan\\
0 0\\
-4.5 0\\
nan nan\\
0 -0\\
-0 -4.5\\
nan nan\\
0 -0\\
-2.025 -4.01863\\
nan nan\\
0 -0\\
-3.33 -3.02673\\
nan nan\\
0 -0\\
-3.915 -2.21873\\
nan nan\\
0 -0\\
-4.2075 -1.59591\\
nan nan\\
0 -0\\
-4.338 -1.19656\\
nan nan\\
0 -0\\
-4.428 -0.801758\\
nan nan\\
0 -0\\
-4.4685 -0.531515\\
nan nan\\
0 -0\\
-4.49325 -0.246383\\
nan nan\\
0 -0\\
-4.5 -0\\
};
\addplot [color=white!40!black,dotted,forget plot]
table[row sep=crcr]{%
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
-0 0\\
nan nan\\
-0 0.5\\
-0.0609332 0.496273\\
-0.119413 0.485531\\
-0.17345 0.468951\\
-0.221795 0.448115\\
-0.263961 0.424647\\
-0.300063 0.399953\\
-0.330597 0.375107\\
-0.35624 0.350846\\
-0.377708 0.327623\\
-0.395677 0.305679\\
-0.410745 0.285112\\
-0.423421 0.265923\\
-0.434127 0.24806\\
-0.44321 0.231441\\
-0.450952 0.215967\\
-0.457583 0.201539\\
-0.463287 0.188057\\
-0.468215 0.175427\\
-0.47249 0.163564\\
-0.476212 0.152388\\
-0.479463 0.141828\\
-0.482311 0.131818\\
-0.484811 0.122302\\
-0.487011 0.113227\\
-0.488948 0.104545\\
-0.490655 0.0962157\\
-0.492159 0.0881992\\
-0.493483 0.0804616\\
-0.494647 0.0729713\\
-0.495665 0.0656995\\
-0.496552 0.05862\\
-0.497319 0.0517084\\
-0.497976 0.044942\\
-0.498531 0.0382997\\
-0.49899 0.0317617\\
-0.499359 0.025309\\
-0.499642 0.0189237\\
-0.499842 0.0125883\\
-0.49996 0.00628592\\
-0.5 0\\
nan nan\\
-0.527922 0.849293\\
-0.600126 0.799905\\
-0.661195 0.750214\\
-0.71248 0.701692\\
-0.755416 0.655246\\
-0.791354 0.611359\\
-0.82149 0.570224\\
-0.846841 0.531846\\
-0.868253 0.496121\\
-0.88642 0.462882\\
-0.901905 0.431935\\
-0.915166 0.403078\\
-0.926574 0.376113\\
-0.93643 0.350854\\
-0.94498 0.327128\\
-0.952424 0.304776\\
-0.958926 0.283655\\
-0.964622 0.263637\\
-0.969623 0.244605\\
-0.974022 0.226454\\
-0.977896 0.209091\\
-0.98131 0.192431\\
-0.984319 0.176398\\
-0.986967 0.160923\\
-0.989293 0.145943\\
-0.99133 0.131399\\
-0.993104 0.11724\\
-0.994638 0.103417\\
-0.995952 0.089884\\
-0.997062 0.0765995\\
-0.99798 0.0635234\\
-0.998718 0.050618\\
-0.999284 0.0378474\\
-0.999683 0.0251766\\
-0.999921 0.0125718\\
-1 0\\
nan nan\\
-1.23223 0.855335\\
-1.27026 0.797769\\
-1.30238 0.744181\\
-1.32963 0.694323\\
-1.35286 0.647902\\
-1.37275 0.604616\\
-1.38986 0.56417\\
-1.40465 0.526281\\
-1.41747 0.490691\\
-1.42864 0.457164\\
-1.43839 0.425483\\
-1.44693 0.395455\\
-1.45443 0.366907\\
-1.46103 0.339681\\
-1.46684 0.313636\\
-1.47197 0.288647\\
-1.47648 0.264598\\
-1.48045 0.241385\\
-1.48394 0.218914\\
-1.48699 0.197099\\
-1.48966 0.17586\\
-1.49196 0.155125\\
-1.49393 0.134826\\
-1.49559 0.114899\\
-1.49697 0.0952851\\
-1.49808 0.0759271\\
-1.49893 0.056771\\
-1.49952 0.0377648\\
-1.49988 0.0188578\\
-1.5 0\\
nan nan\\
-1.83033 0.806155\\
-1.85315 0.752226\\
-1.87286 0.701708\\
-1.88996 0.654255\\
-1.90485 0.609551\\
-1.91785 0.56731\\
-1.92924 0.527274\\
-1.93925 0.489209\\
-1.94804 0.452908\\
-1.95579 0.418182\\
-1.96262 0.384863\\
-1.96864 0.352797\\
-1.97393 0.321846\\
-1.97859 0.291885\\
-1.98266 0.262798\\
-1.98621 0.23448\\
-1.98928 0.206834\\
-1.9919 0.179768\\
-1.99412 0.153199\\
-1.99596 0.127047\\
-1.99744 0.101236\\
-1.99857 0.0756947\\
-1.99937 0.0503531\\
-1.99984 0.0251437\\
-2 0\\
nan nan\\
-2.36245 0.817819\\
-2.38106 0.761939\\
-2.39732 0.709138\\
-2.41156 0.659092\\
-2.42406 0.611511\\
-2.43505 0.566135\\
-2.44474 0.522727\\
-2.45328 0.481078\\
-2.4608 0.440996\\
-2.46742 0.402308\\
-2.47323 0.364856\\
-2.47832 0.328498\\
-2.48276 0.2931\\
-2.4866 0.258542\\
-2.48988 0.22471\\
-2.49265 0.191499\\
-2.49495 0.158809\\
-2.4968 0.126545\\
-2.49821 0.0946184\\
-2.49921 0.0629414\\
-2.4998 0.0314296\\
-2.5 0\\
nan nan\\
-2.87678 0.850966\\
-2.89387 0.79091\\
-2.90887 0.733814\\
-2.92207 0.679362\\
-2.93369 0.627273\\
-2.94393 0.577294\\
-2.95296 0.529195\\
-2.9609 0.482769\\
-2.96788 0.437828\\
-2.97399 0.394197\\
-2.97931 0.35172\\
-2.98391 0.31025\\
-2.98786 0.269652\\
-2.99119 0.229798\\
-2.99394 0.19057\\
-2.99615 0.151854\\
-2.99785 0.113542\\
-2.99905 0.0755297\\
-2.99976 0.0377155\\
-3 0\\
nan nan\\
-3.39368 0.856116\\
-3.40908 0.792589\\
-3.42264 0.731818\\
-3.43459 0.67351\\
-3.44512 0.617394\\
-3.45438 0.563231\\
-3.46253 0.510799\\
-3.46965 0.459897\\
-3.47586 0.41034\\
-3.48123 0.361959\\
-3.48583 0.314594\\
-3.48972 0.268098\\
-3.49293 0.222332\\
-3.49551 0.177163\\
-3.49749 0.132466\\
-3.49889 0.088118\\
-3.49972 0.0440014\\
-3.5 0\\
nan nan\\
-3.91158 0.836364\\
-3.92524 0.769725\\
-3.93728 0.705594\\
-3.94787 0.643693\\
-3.95717 0.58377\\
-3.96532 0.525596\\
-3.97241 0.46896\\
-3.97855 0.413667\\
-3.98381 0.359536\\
-3.98825 0.306398\\
-3.99192 0.254094\\
-3.99487 0.202472\\
-3.99713 0.151389\\
-3.99873 0.100706\\
-3.99968 0.0502874\\
-4 0\\
nan nan\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
-0 -0\\
nan nan\\
-0 -0.5\\
-0.0609332 -0.496273\\
-0.119413 -0.485531\\
-0.17345 -0.468951\\
-0.221795 -0.448115\\
-0.263961 -0.424647\\
-0.300063 -0.399953\\
-0.330597 -0.375107\\
-0.35624 -0.350846\\
-0.377708 -0.327623\\
-0.395677 -0.305679\\
-0.410745 -0.285112\\
-0.423421 -0.265923\\
-0.434127 -0.24806\\
-0.44321 -0.231441\\
-0.450952 -0.215967\\
-0.457583 -0.201539\\
-0.463287 -0.188057\\
-0.468215 -0.175427\\
-0.47249 -0.163564\\
-0.476212 -0.152388\\
-0.479463 -0.141828\\
-0.482311 -0.131818\\
-0.484811 -0.122302\\
-0.487011 -0.113227\\
-0.488948 -0.104545\\
-0.490655 -0.0962157\\
-0.492159 -0.0881992\\
-0.493483 -0.0804616\\
-0.494647 -0.0729713\\
-0.495665 -0.0656995\\
-0.496552 -0.05862\\
-0.497319 -0.0517084\\
-0.497976 -0.044942\\
-0.498531 -0.0382997\\
-0.49899 -0.0317617\\
-0.499359 -0.025309\\
-0.499642 -0.0189237\\
-0.499842 -0.0125883\\
-0.49996 -0.00628592\\
-0.5 -0\\
nan nan\\
-0.527922 -0.849293\\
-0.600126 -0.799905\\
-0.661195 -0.750214\\
-0.71248 -0.701692\\
-0.755416 -0.655246\\
-0.791354 -0.611359\\
-0.82149 -0.570224\\
-0.846841 -0.531846\\
-0.868253 -0.496121\\
-0.88642 -0.462882\\
-0.901905 -0.431935\\
-0.915166 -0.403078\\
-0.926574 -0.376113\\
-0.93643 -0.350854\\
-0.94498 -0.327128\\
-0.952424 -0.304776\\
-0.958926 -0.283655\\
-0.964622 -0.263637\\
-0.969623 -0.244605\\
-0.974022 -0.226454\\
-0.977896 -0.209091\\
-0.98131 -0.192431\\
-0.984319 -0.176398\\
-0.986967 -0.160923\\
-0.989293 -0.145943\\
-0.99133 -0.131399\\
-0.993104 -0.11724\\
-0.994638 -0.103417\\
-0.995952 -0.089884\\
-0.997062 -0.0765995\\
-0.99798 -0.0635234\\
-0.998718 -0.050618\\
-0.999284 -0.0378474\\
-0.999683 -0.0251766\\
-0.999921 -0.0125718\\
-1 -0\\
nan nan\\
-1.23223 -0.855335\\
-1.27026 -0.797769\\
-1.30238 -0.744181\\
-1.32963 -0.694323\\
-1.35286 -0.647902\\
-1.37275 -0.604616\\
-1.38986 -0.56417\\
-1.40465 -0.526281\\
-1.41747 -0.490691\\
-1.42864 -0.457164\\
-1.43839 -0.425483\\
-1.44693 -0.395455\\
-1.45443 -0.366907\\
-1.46103 -0.339681\\
-1.46684 -0.313636\\
-1.47197 -0.288647\\
-1.47648 -0.264598\\
-1.48045 -0.241385\\
-1.48394 -0.218914\\
-1.48699 -0.197099\\
-1.48966 -0.17586\\
-1.49196 -0.155125\\
-1.49393 -0.134826\\
-1.49559 -0.114899\\
-1.49697 -0.0952851\\
-1.49808 -0.0759271\\
-1.49893 -0.056771\\
-1.49952 -0.0377648\\
-1.49988 -0.0188578\\
-1.5 -0\\
nan nan\\
-1.83033 -0.806155\\
-1.85315 -0.752226\\
-1.87286 -0.701708\\
-1.88996 -0.654255\\
-1.90485 -0.609551\\
-1.91785 -0.56731\\
-1.92924 -0.527274\\
-1.93925 -0.489209\\
-1.94804 -0.452908\\
-1.95579 -0.418182\\
-1.96262 -0.384863\\
-1.96864 -0.352797\\
-1.97393 -0.321846\\
-1.97859 -0.291885\\
-1.98266 -0.262798\\
-1.98621 -0.23448\\
-1.98928 -0.206834\\
-1.9919 -0.179768\\
-1.99412 -0.153199\\
-1.99596 -0.127047\\
-1.99744 -0.101236\\
-1.99857 -0.0756947\\
-1.99937 -0.0503531\\
-1.99984 -0.0251437\\
-2 -0\\
nan nan\\
-2.36245 -0.817819\\
-2.38106 -0.761939\\
-2.39732 -0.709138\\
-2.41156 -0.659092\\
-2.42406 -0.611511\\
-2.43505 -0.566135\\
-2.44474 -0.522727\\
-2.45328 -0.481078\\
-2.4608 -0.440996\\
-2.46742 -0.402308\\
-2.47323 -0.364856\\
-2.47832 -0.328498\\
-2.48276 -0.2931\\
-2.4866 -0.258542\\
-2.48988 -0.22471\\
-2.49265 -0.191499\\
-2.49495 -0.158809\\
-2.4968 -0.126545\\
-2.49821 -0.0946184\\
-2.49921 -0.0629414\\
-2.4998 -0.0314296\\
-2.5 -0\\
nan nan\\
-2.87678 -0.850966\\
-2.89387 -0.79091\\
-2.90887 -0.733814\\
-2.92207 -0.679362\\
-2.93369 -0.627273\\
-2.94393 -0.577294\\
-2.95296 -0.529195\\
-2.9609 -0.482769\\
-2.96788 -0.437828\\
-2.97399 -0.394197\\
-2.97931 -0.35172\\
-2.98391 -0.31025\\
-2.98786 -0.269652\\
-2.99119 -0.229798\\
-2.99394 -0.19057\\
-2.99615 -0.151854\\
-2.99785 -0.113542\\
-2.99905 -0.0755297\\
-2.99976 -0.0377155\\
-3 -0\\
nan nan\\
-3.39368 -0.856116\\
-3.40908 -0.792589\\
-3.42264 -0.731818\\
-3.43459 -0.67351\\
-3.44512 -0.617394\\
-3.45438 -0.563231\\
-3.46253 -0.510799\\
-3.46965 -0.459897\\
-3.47586 -0.41034\\
-3.48123 -0.361959\\
-3.48583 -0.314594\\
-3.48972 -0.268098\\
-3.49293 -0.222332\\
-3.49551 -0.177163\\
-3.49749 -0.132466\\
-3.49889 -0.088118\\
-3.49972 -0.0440014\\
-3.5 -0\\
nan nan\\
-3.91158 -0.836364\\
-3.92524 -0.769725\\
-3.93728 -0.705594\\
-3.94787 -0.643693\\
-3.95717 -0.58377\\
-3.96532 -0.525596\\
-3.97241 -0.46896\\
-3.97855 -0.413667\\
-3.98381 -0.359536\\
-3.98825 -0.306398\\
-3.99192 -0.254094\\
-3.99487 -0.202472\\
-3.99713 -0.151389\\
-3.99873 -0.100706\\
-3.99968 -0.0502874\\
-4 -0\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.781\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0.5,
xmax=500.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 0.5,
ymax=480.5,
hide axis
]
\addplot [forget plot] graphics [xmin= 0.5,xmax=500.5,ymin= 0.5,ymax=480.5] {test44-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.838\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min= 0,
point meta max= 1,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-5.125,
xmax=5.125,
xlabel={Order},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.025,
ymax=2.525,
ylabel={$\beta$},
axis background/.style={fill=white},
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
colorbar
]
\addplot [forget plot] graphics [xmin=-5.125,xmax=5.125,ymin=-0.025,ymax=2.525] {test45-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0.5,
xmax=320.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 0.5,
ymax=200.5,
axis background/.style={fill=white}
]
\addplot [forget plot] graphics [xmin= 0.5,xmax=320.5,ymin= 0.5,ymax=200.5] {test46-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-1.39468,
xmax=1.39468,
xlabel={Real Part},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-1.1,
ymax= 1.1,
ylabel={Imaginary Part},
axis background/.style={fill=white},
title style={font=\bfseries},
title={4th-Order Elliptic Lowpass Digital Filter}
]
\addplot [color=mycolor1,mark size=3.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
-0.46683 0.884347\\
-0.46683 -0.884347\\
0.144235 0.989543\\
0.144235 -0.989543\\
};
\addplot [color=mycolor1,mark size=4.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
0.315066 0.905692\\
0.315066 -0.905692\\
0.534513 0.508124\\
0.534513 -0.508124\\
};
\addplot [color=mycolor1,dotted,forget plot]
table[row sep=crcr]{%
1 0\\
0.997102 0.0760801\\
0.988424 0.151719\\
0.974016 0.226479\\
0.953963 0.299926\\
0.928379 0.371634\\
0.897415 0.441188\\
0.861248 0.508185\\
0.820089 0.572236\\
0.774176 0.63297\\
0.723776 0.690035\\
0.66918 0.7431\\
0.610706 0.791858\\
0.548691 0.836025\\
0.483496 0.875347\\
0.415498 0.909594\\
0.345092 0.938569\\
0.272685 0.962103\\
0.198698 0.980061\\
0.123559 0.992337\\
0.0477036 0.998862\\
-0.0284282 0.999596\\
-0.104395 0.994536\\
-0.179757 0.983711\\
-0.254077 0.967184\\
-0.326924 0.945051\\
-0.397876 0.917439\\
-0.466522 0.88451\\
-0.532463 0.846453\\
-0.595318 0.80349\\
-0.654723 0.755869\\
-0.710332 0.703867\\
-0.761823 0.647785\\
-0.808899 0.587948\\
-0.851286 0.524703\\
-0.888738 0.458416\\
-0.921038 0.389472\\
-0.948 0.318271\\
-0.969466 0.245224\\
-0.985313 0.170756\\
-0.995449 0.0952987\\
-0.999814 0.0192886\\
-0.998384 -0.0568333\\
-0.991166 -0.132626\\
-0.978203 -0.207649\\
-0.95957 -0.281469\\
-0.935375 -0.353658\\
-0.905757 -0.423796\\
-0.87089 -0.491478\\
-0.830974 -0.556311\\
-0.786241 -0.617919\\
-0.736951 -0.675946\\
-0.683389 -0.730054\\
-0.625866 -0.779931\\
-0.564715 -0.825286\\
-0.50029 -0.865858\\
-0.432966 -0.90141\\
-0.363131 -0.931738\\
-0.291192 -0.956665\\
-0.217565 -0.976046\\
-0.142677 -0.989769\\
-0.0669614 -0.997756\\
0.00914209 -0.999958\\
0.0851926 -0.996365\\
0.160749 -0.986995\\
0.235374 -0.971905\\
0.308635 -0.951181\\
0.380106 -0.924943\\
0.449374 -0.893344\\
0.516037 -0.856566\\
0.579709 -0.814823\\
0.640021 -0.768357\\
0.696623 -0.717437\\
0.749187 -0.662359\\
0.797408 -0.603441\\
0.841006 -0.541025\\
0.87973 -0.475473\\
0.913355 -0.407165\\
0.941685 -0.336497\\
0.964556 -0.263878\\
0.981836 -0.18973\\
0.993425 -0.114482\\
0.999256 -0.03857\\
1 -2.44929e-16\\
nan nan\\
-1.67362 0\\
nan nan\\
1.67362 0\\
nan nan\\
0 -1.32\\
nan nan\\
0 1.32\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.648\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-1.35982,
xmax=1.35982,
xlabel={Real Part},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-1.1,
ymax= 1.1,
ylabel={Imaginary Part},
ymajorgrids,
axis background/.style={fill=white},
title style={font=\bfseries},
title={Pole/Zero Plot}
]
\addplot [color=mycolor1,mark size=3.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
-0.46683 0.884347\\
-0.46683 -0.884347\\
0.144235 0.989543\\
0.144235 -0.989543\\
};
\addplot [color=mycolor1,mark size=4.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
0.315066 0.905692\\
0.315066 -0.905692\\
0.534513 0.508124\\
0.534513 -0.508124\\
};
\draw[color=mycolor1,dotted] (axis cs:0,0) circle[radius=1];
\draw[color=mycolor1,dotted] (axis cs:-10,0)--(axis cs:10,0);
\draw[color=mycolor1,dotted] (axis cs:0,-10)--(axis cs:0,10);
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.927\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=0.999878,
xlabel={$\text{Normalized Frequency (}\times\pi\text{ rad/sample)}$},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-113.635,
ymax=5.36115,
ylabel={Magnitude (dB)},
ymajorgrids,
axis background/.style={fill=white},
title style={font=\bfseries},
title={Magnitude Response (dB) and Phase Response}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
0.417603 -0.000487673\\
0.42688 0.000319285\\
0.43396 0.000601834\\
0.4375 -0.00180866\\
0.440674 -0.00752189\\
0.443726 -0.0182019\\
0.447021 -0.0382523\\
0.450562 -0.0737856\\
0.454346 -0.133865\\
0.458496 -0.234997\\
0.462891 -0.394569\\
0.467651 -0.64508\\
0.472778 -1.02709\\
0.478271 -1.59337\\
0.484253 -2.43009\\
0.490601 -3.61229\\
0.497437 -5.27835\\
0.504639 -7.54221\\
0.512207 -10.5724\\
0.520142 -14.5918\\
0.528198 -19.7412\\
0.536133 -26.147\\
0.543701 -33.9357\\
0.550537 -43.0942\\
0.556274 -53.519\\
0.560547 -64.9174\\
0.563232 -77.3693\\
0.564453 -91.206\\
0.564819 -109.202\\
0.564941 -108.421\\
0.566162 -84.7593\\
0.567993 -81.0375\\
0.568359 -80.9595\\
0.568604 -80.9839\\
0.569336 -81.3834\\
0.570801 -83.5773\\
0.57251 -89.4175\\
0.57373 -101.145\\
0.574219 -119.797\\
0.575439 -92.4509\\
0.577637 -85.1034\\
0.579956 -82.8018\\
0.581055 -82.5832\\
0.581421 -82.6078\\
0.582397 -82.8977\\
0.584106 -84.2038\\
0.586182 -87.5013\\
0.588135 -94.0814\\
0.589355 -105.668\\
0.589844 -125.403\\
0.591064 -96.8696\\
0.593262 -88.939\\
0.595947 -85.5168\\
0.598145 -84.666\\
0.598511 -84.6459\\
0.598999 -84.6688\\
0.599976 -84.882\\
0.601685 -85.8069\\
0.603882 -88.2286\\
0.606079 -92.9767\\
0.607788 -101.43\\
0.608643 -116.794\\
0.608748 -125.534\\
0.612305 -91.749\\
0.615112 -87.894\\
0.617676 -86.6376\\
0.618652 -86.5403\\
0.619019 -86.5525\\
0.619873 -86.6829\\
0.62146 -87.3101\\
0.623657 -89.1198\\
0.625977 -92.7787\\
0.62793 -99.0249\\
0.62915 -109.021\\
0.629603 -125.534\\
0.630981 -102.24\\
0.633301 -93.73\\
0.63623 -89.7083\\
0.638916 -88.3146\\
0.640259 -88.1585\\
0.640625 -88.1718\\
0.641602 -88.323\\
0.643311 -89.0043\\
0.645508 -90.7816\\
0.647949 -94.5485\\
0.650024 -101.266\\
0.651245 -112.156\\
0.651611 -124.228\\
0.651614 -125.534\\
0.652832 -105.24\\
0.655029 -96.1172\\
0.657959 -91.592\\
0.660767 -89.8387\\
0.66272 -89.5237\\
0.663086 -89.5364\\
0.664062 -89.6789\\
0.665771 -90.3207\\
0.667969 -91.9925\\
0.67041 -95.499\\
0.672485 -101.506\\
0.673828 -111.371\\
0.674316 -124.203\\
0.674326 -125.534\\
0.675659 -105.957\\
0.677856 -97.2986\\
0.680786 -92.8369\\
0.683594 -91.0496\\
0.685669 -90.6795\\
0.686157 -90.694\\
0.687134 -90.8369\\
0.688843 -91.4654\\
0.691162 -93.2131\\
0.693604 -96.7125\\
0.695679 -102.688\\
0.697021 -112.448\\
0.69751 -124.822\\
0.697516 -125.534\\
0.698975 -106.391\\
0.701294 -97.9422\\
0.704224 -93.7312\\
0.707153 -91.9767\\
0.709106 -91.6633\\
0.709595 -91.6786\\
0.710571 -91.8201\\
0.71228 -92.4366\\
0.7146 -94.1461\\
0.717041 -97.5553\\
0.719116 -103.304\\
0.720459 -112.247\\
0.720994 -125.534\\
nan nan\\
0.72106 -125.534\\
0.722412 -108.047\\
0.724731 -99.1323\\
0.727661 -94.7616\\
0.730591 -92.8983\\
0.732666 -92.5076\\
0.732788 -92.5054\\
0.733276 -92.5194\\
0.734253 -92.6561\\
0.735962 -93.2574\\
0.738281 -94.9287\\
0.740723 -98.2557\\
0.74292 -104.301\\
0.744263 -113.492\\
0.744689 -125.534\\
nan nan\\
0.744819 -125.534\\
0.746216 -108.666\\
0.748535 -99.887\\
0.751587 -95.4125\\
0.754517 -93.6037\\
0.756592 -93.2294\\
0.756714 -93.2278\\
0.757202 -93.2439\\
0.758179 -93.3833\\
0.759888 -93.9853\\
0.762207 -95.6497\\
0.764648 -98.9564\\
0.766846 -104.95\\
0.768188 -113.976\\
nan nan\\
0.769666 -125.534\\
0.77002 -110.423\\
0.772217 -101.206\\
0.775146 -96.4745\\
0.778198 -94.3523\\
0.780396 -93.8586\\
0.780762 -93.8478\\
0.78125 -93.8641\\
0.782227 -94.003\\
0.783936 -94.6007\\
0.786255 -96.2522\\
0.788696 -99.5306\\
0.790894 -105.453\\
0.792236 -114.255\\
nan nan\\
0.793692 -125.534\\
0.794312 -109.503\\
0.796631 -101.025\\
0.799683 -96.5995\\
0.802612 -94.7802\\
0.804688 -94.3824\\
0.804932 -94.378\\
0.805298 -94.3878\\
0.806274 -94.5104\\
0.807861 -95.0192\\
0.810059 -96.4458\\
0.8125 -99.416\\
0.814697 -104.595\\
0.816284 -113.417\\
0.816866 -125.534\\
nan nan\\
0.816989 -125.534\\
0.818481 -110.06\\
0.820801 -101.544\\
0.823853 -97.0944\\
0.826782 -95.252\\
0.828979 -94.831\\
0.829224 -94.8285\\
0.829712 -94.8497\\
0.830811 -95.0252\\
0.832642 -95.7323\\
0.834961 -97.5152\\
0.837402 -101.036\\
0.839478 -107.074\\
0.84082 -117.199\\
nan nan\\
0.842243 -125.534\\
0.842651 -111.055\\
0.844971 -102.153\\
0.848022 -97.5838\\
0.851074 -95.6319\\
0.853271 -95.2093\\
0.853516 -95.2064\\
0.854004 -95.2266\\
0.855103 -95.3995\\
0.856934 -96.1003\\
0.859253 -97.8709\\
0.861694 -101.369\\
0.86377 -107.354\\
0.865112 -117.278\\
nan nan\\
0.86652 -125.534\\
0.866943 -111.555\\
0.869263 -102.549\\
0.872314 -97.9424\\
0.875366 -95.9642\\
0.877563 -95.5229\\
0.877808 -95.5178\\
0.878296 -95.5336\\
0.879272 -95.669\\
0.880981 -96.254\\
0.883301 -97.8738\\
0.885742 -101.091\\
0.887939 -106.878\\
0.889404 -116.707\\
0.889678 -125.534\\
0.891357 -111.451\\
0.893677 -102.705\\
0.896729 -98.1605\\
0.89978 -96.2044\\
0.901978 -95.7716\\
0.902222 -95.7673\\
0.902588 -95.777\\
0.903564 -95.8977\\
0.905151 -96.3993\\
0.907349 -97.8077\\
0.90979 -100.744\\
0.911987 -105.862\\
0.913574 -114.518\\
nan nan\\
0.915649 -125.534\\
0.917603 -104.055\\
0.920532 -98.9856\\
0.923584 -96.6496\\
0.926025 -95.9855\\
0.926636 -95.9581\\
0.927246 -95.9843\\
0.928345 -96.1678\\
0.930176 -96.8859\\
0.932495 -98.6845\\
0.934937 -102.242\\
0.937012 -108.401\\
0.938354 -119.12\\
nan nan\\
0.93931 -125.534\\
0.940552 -109.561\\
0.942993 -102.032\\
0.946045 -98.0628\\
0.948975 -96.4163\\
0.950928 -96.0945\\
0.95105 -96.0928\\
0.951538 -96.1075\\
0.952515 -96.2403\\
0.954224 -96.8192\\
0.956543 -98.4284\\
0.958984 -101.633\\
0.961182 -107.407\\
0.962646 -117.232\\
0.962905 -125.534\\
0.9646 -111.95\\
0.966919 -103.188\\
0.969971 -98.6192\\
0.973022 -96.6353\\
0.97522 -96.1802\\
0.975586 -96.173\\
0.976074 -96.1934\\
0.977173 -96.3656\\
0.979004 -97.0631\\
0.981323 -98.8288\\
0.983765 -102.33\\
0.98584 -108.36\\
0.987183 -118.546\\
nan nan\\
0.98858 -125.534\\
0.989014 -112.204\\
0.991333 -103.302\\
0.994385 -98.6881\\
0.997437 -96.6793\\
0.999634 -96.2091\\
0.999878 -96.2006\\
};
\end{axis}
\begin{axis}[%
width=0.927\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=0.999878,
xtick={\empty},
xlabel={$\text{Normalized Frequency (}\times\pi\text{ rad/sample)}$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-74.5262,
ymax=3.54886,
ytick={-65.5802,-52.4579,-39.3356,-26.2133,-13.091,0.0313318},
yticklabels={{ -65.58},{-52.458},{-39.336},{-26.213},{-13.091},{ 0.031}},
ylabel={Phase (radians)},
axis x line*=bottom,
axis y line*=right
]
\addplot [color=mycolor2,solid,forget plot]
table[row sep=crcr]{%
0 0\\
0.564819 -70.9773\\
0.564941 -67.851\\
0.574097 -69.0015\\
0.574219 -65.8753\\
0.589722 -67.8234\\
0.589844 -64.6972\\
0.608765 -67.0748\\
0.608887 -63.9486\\
0.629639 -66.5564\\
0.629761 -63.4301\\
0.651611 -66.1759\\
0.651733 -63.0497\\
0.674438 -65.9029\\
0.674561 -62.7766\\
0.697632 -65.6759\\
0.697754 -62.5496\\
0.721191 -65.4948\\
0.721313 -62.3686\\
0.744873 -65.3292\\
0.744995 -62.2029\\
0.768799 -65.1942\\
0.768921 -62.0679\\
0.792969 -65.0899\\
0.793091 -61.9636\\
0.817139 -64.9856\\
0.817261 -61.8593\\
0.841309 -64.8813\\
0.841431 -61.755\\
0.865723 -64.8076\\
0.865845 -61.6814\\
0.890015 -64.7186\\
0.890137 -61.5924\\
0.914429 -64.645\\
0.914551 -61.5188\\
0.938843 -64.5714\\
0.938965 -61.4451\\
0.963257 -64.4978\\
0.963379 -61.3715\\
0.987671 -64.4241\\
0.987793 -61.2979\\
0.999878 -62.8165\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,1.00000,1.00000}%
\definecolor{mycolor2}{rgb}{1.00000,0.00000,1.00000}%
\definecolor{mycolor3}{rgb}{1.00000,1.00000,0.00000}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 11,
xtick={ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
xticklabels={{6},{8},{10},{12},{14},{17},{19},{21},{23},{25}},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 140,
ymajorgrids,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot [color=blue,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
1 10\\
};
\addplot [color=blue,mark size=4.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
2 10\\
};
\addplot [color=blue,mark size=5.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
3 10\\
};
\addplot [color=blue,mark size=6.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
4 10\\
};
\addplot [color=blue,mark size=7.0pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
5 10\\
};
\addplot [color=blue,mark size=8.5pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
6 10\\
};
\addplot [color=blue,mark size=9.5pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
7 10\\
};
\addplot [color=blue,mark size=10.5pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
8 10\\
};
\addplot [color=blue,mark size=11.5pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
9 10\\
};
\addplot [color=blue,mark size=12.5pt,only marks,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
10 10\\
};
\addplot [color=red,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
1 20\\
};
\addplot [color=red,mark size=6.9pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
2 20\\
};
\addplot [color=red,mark size=8.6pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
3 20\\
};
\addplot [color=red,mark size=10.4pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
4 20\\
};
\addplot [color=red,mark size=12.1pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
5 20\\
};
\addplot [color=red,mark size=14.7pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
6 20\\
};
\addplot [color=red,mark size=16.4pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
7 20\\
};
\addplot [color=red,mark size=18.1pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
8 20\\
};
\addplot [color=red,mark size=19.8pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
9 20\\
};
\addplot [color=red,mark size=21.6pt,only marks,mark=diamond,mark options={solid},forget plot]
table[row sep=crcr]{%
10 20\\
};
\addplot [color=green,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
1 30\\
};
\addplot [color=green,mark size=4.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
2 30\\
};
\addplot [color=green,mark size=5.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
3 30\\
};
\addplot [color=green,mark size=6.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
4 30\\
};
\addplot [color=green,mark size=7.0pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
5 30\\
};
\addplot [color=green,mark size=8.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
6 30\\
};
\addplot [color=green,mark size=9.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
7 30\\
};
\addplot [color=green,mark size=10.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
8 30\\
};
\addplot [color=green,mark size=11.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
9 30\\
};
\addplot [color=green,mark size=12.5pt,only marks,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
10 30\\
};
\addplot [color=mycolor1,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
1 40\\
};
\addplot [color=mycolor1,mark size=1.3pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
2 40\\
};
\addplot [color=mycolor1,mark size=1.7pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
3 40\\
};
\addplot [color=mycolor1,mark size=2.0pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
4 40\\
};
\addplot [color=mycolor1,mark size=2.3pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
5 40\\
};
\addplot [color=mycolor1,mark size=2.8pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
6 40\\
};
\addplot [color=mycolor1,mark size=3.2pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
7 40\\
};
\addplot [color=mycolor1,mark size=3.5pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
8 40\\
};
\addplot [color=mycolor1,mark size=3.8pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
9 40\\
};
\addplot [color=mycolor1,mark size=4.2pt,only marks,mark=*,mark options={solid},forget plot]
table[row sep=crcr]{%
10 40\\
};
\addplot [color=mycolor2,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
1 50\\
};
\addplot [color=mycolor2,mark size=4.0pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
2 50\\
};
\addplot [color=mycolor2,mark size=5.0pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
3 50\\
};
\addplot [color=mycolor2,mark size=6.0pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
4 50\\
};
\addplot [color=mycolor2,mark size=7.0pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
5 50\\
};
\addplot [color=mycolor2,mark size=8.5pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
6 50\\
};
\addplot [color=mycolor2,mark size=9.5pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
7 50\\
};
\addplot [color=mycolor2,mark size=10.5pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
8 50\\
};
\addplot [color=mycolor2,mark size=11.5pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
9 50\\
};
\addplot [color=mycolor2,mark size=12.5pt,only marks,mark=+,mark options={solid},forget plot]
table[row sep=crcr]{%
10 50\\
};
\addplot [color=mycolor3,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
1 60\\
};
\addplot [color=mycolor3,mark size=4.0pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
2 60\\
};
\addplot [color=mycolor3,mark size=5.0pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
3 60\\
};
\addplot [color=mycolor3,mark size=6.0pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
4 60\\
};
\addplot [color=mycolor3,mark size=7.0pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
5 60\\
};
\addplot [color=mycolor3,mark size=8.5pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
6 60\\
};
\addplot [color=mycolor3,mark size=9.5pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
7 60\\
};
\addplot [color=mycolor3,mark size=10.5pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
8 60\\
};
\addplot [color=mycolor3,mark size=11.5pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
9 60\\
};
\addplot [color=mycolor3,mark size=12.5pt,only marks,mark=asterisk,mark options={solid},forget plot]
table[row sep=crcr]{%
10 60\\
};
\addplot [color=blue,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
1 70\\
};
\addplot [color=blue,mark size=2.8pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
2 70\\
};
\addplot [color=blue,mark size=3.5pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
3 70\\
};
\addplot [color=blue,mark size=4.2pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
4 70\\
};
\addplot [color=blue,mark size=4.9pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
5 70\\
};
\addplot [color=blue,mark size=6.0pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
6 70\\
};
\addplot [color=blue,mark size=6.7pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
7 70\\
};
\addplot [color=blue,mark size=7.4pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
8 70\\
};
\addplot [color=blue,mark size=8.1pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
9 70\\
};
\addplot [color=blue,mark size=8.8pt,only marks,mark=square,mark options={solid},forget plot]
table[row sep=crcr]{%
10 70\\
};
\addplot [color=mycolor2,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
1 80\\
};
\addplot [color=mycolor2,mark size=2.7pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
2 80\\
};
\addplot [color=mycolor2,mark size=3.3pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
3 80\\
};
\addplot [color=mycolor2,mark size=4.0pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
4 80\\
};
\addplot [color=mycolor2,mark size=4.7pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
5 80\\
};
\addplot [color=mycolor2,mark size=5.7pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
6 80\\
};
\addplot [color=mycolor2,mark size=6.3pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
7 80\\
};
\addplot [color=mycolor2,mark size=7.0pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
8 80\\
};
\addplot [color=mycolor2,mark size=7.7pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
9 80\\
};
\addplot [color=mycolor2,mark size=8.3pt,only marks,mark=triangle,mark options={solid,rotate=180},forget plot]
table[row sep=crcr]{%
10 80\\
};
\addplot [color=black,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
1 90\\
};
\addplot [color=black,mark size=2.7pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
2 90\\
};
\addplot [color=black,mark size=3.3pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
3 90\\
};
\addplot [color=black,mark size=4.0pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
4 90\\
};
\addplot [color=black,mark size=4.7pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
5 90\\
};
\addplot [color=black,mark size=5.7pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
6 90\\
};
\addplot [color=black,mark size=6.3pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
7 90\\
};
\addplot [color=black,mark size=7.0pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
8 90\\
};
\addplot [color=black,mark size=7.7pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
9 90\\
};
\addplot [color=black,mark size=8.3pt,only marks,mark=triangle,mark options={solid},forget plot]
table[row sep=crcr]{%
10 90\\
};
\addplot [color=red,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
1 100\\
};
\addplot [color=red,mark size=2.7pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
2 100\\
};
\addplot [color=red,mark size=3.3pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
3 100\\
};
\addplot [color=red,mark size=4.0pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
4 100\\
};
\addplot [color=red,mark size=4.7pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
5 100\\
};
\addplot [color=red,mark size=5.7pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
6 100\\
};
\addplot [color=red,mark size=6.3pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
7 100\\
};
\addplot [color=red,mark size=7.0pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
8 100\\
};
\addplot [color=red,mark size=7.7pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
9 100\\
};
\addplot [color=red,mark size=8.3pt,only marks,mark=triangle,mark options={solid,rotate=90},forget plot]
table[row sep=crcr]{%
10 100\\
};
\addplot [color=green,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
1 110\\
};
\addplot [color=green,mark size=2.7pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
2 110\\
};
\addplot [color=green,mark size=3.3pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
3 110\\
};
\addplot [color=green,mark size=4.0pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
4 110\\
};
\addplot [color=green,mark size=4.7pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
5 110\\
};
\addplot [color=green,mark size=5.7pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
6 110\\
};
\addplot [color=green,mark size=6.3pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
7 110\\
};
\addplot [color=green,mark size=7.0pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
8 110\\
};
\addplot [color=green,mark size=7.7pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
9 110\\
};
\addplot [color=green,mark size=8.3pt,only marks,mark=triangle,mark options={solid,rotate=270},forget plot]
table[row sep=crcr]{%
10 110\\
};
\addplot [color=mycolor1,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
1 120\\
};
\addplot [color=mycolor1,mark size=4.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
2 120\\
};
\addplot [color=mycolor1,mark size=5.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
3 120\\
};
\addplot [color=mycolor1,mark size=6.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
4 120\\
};
\addplot [color=mycolor1,mark size=7.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
5 120\\
};
\addplot [color=mycolor1,mark size=8.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
6 120\\
};
\addplot [color=mycolor1,mark size=9.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
7 120\\
};
\addplot [color=mycolor1,mark size=10.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
8 120\\
};
\addplot [color=mycolor1,mark size=11.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
9 120\\
};
\addplot [color=mycolor1,mark size=12.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
10 120\\
};
\addplot [color=blue,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
1 130\\
};
\addplot [color=blue,mark size=4.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
2 130\\
};
\addplot [color=blue,mark size=5.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
3 130\\
};
\addplot [color=blue,mark size=6.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
4 130\\
};
\addplot [color=blue,mark size=7.0pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
5 130\\
};
\addplot [color=blue,mark size=8.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
6 130\\
};
\addplot [color=blue,mark size=9.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
7 130\\
};
\addplot [color=blue,mark size=10.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
8 130\\
};
\addplot [color=blue,mark size=11.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
9 130\\
};
\addplot [color=blue,mark size=12.5pt,only marks,mark=star,mark options={solid},forget plot]
table[row sep=crcr]{%
10 130\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 10,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white},
xticklabel pos=right,
yticklabel pos=right
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.540302\\
2 -0.416147\\
3 -0.989992\\
4 -0.653644\\
5 0.283662\\
6 0.96017\\
7 0.753902\\
8 -0.1455\\
9 -0.91113\\
10 -0.839072\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={green},
every x tick label/.append style={font=\color{green}},
xmin= 0,
xmax= 15,
every outer y axis line/.append style={blue},
every y tick label/.append style={font=\color{blue}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
1 0.841471\\
2 0.909297\\
3 0.14112\\
4 -0.756802\\
5 -0.958924\\
6 -0.279415\\
7 0.656987\\
8 0.989358\\
9 0.412118\\
10 -0.544021\\
11 -0.99999\\
12 -0.536573\\
13 0.420167\\
14 0.990607\\
15 0.650288\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={red},
every x tick label/.append style={font=\color{red}},
xmin= 0,
xmax= 40,
xtick={ 0, 8, 16, 24, 32, 40},
every outer y axis line/.append style={red},
every y tick label/.append style={font=\color{red}},
ymin= -1,
ymax= 2,
ytick={ -1, -0.4, 0.2, 0.8, 1.4, 2},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
0 2\\
0.2 1.78194\\
0.4 1.5351\\
0.7 1.1331\\
1.2 0.452947\\
1.4 0.199961\\
1.6 -0.0324439\\
1.8 -0.23916\\
2 -0.416147\\
2.1 -0.492533\\
2.2 -0.560477\\
2.3 -0.619792\\
2.4 -0.670358\\
2.5 -0.712128\\
2.6 -0.745121\\
2.7 -0.769423\\
2.8 -0.785185\\
2.9 -0.792619\\
3 -0.791994\\
3.1 -0.783635\\
3.2 -0.767919\\
3.3 -0.745268\\
3.5 -0.681059\\
3.7 -0.595158\\
3.9 -0.492157\\
4.2 -0.316297\\
4.8 0.05147\\
5 0.162093\\
5.2 0.260287\\
5.4 0.343077\\
5.6 0.408193\\
5.8 0.454113\\
6 0.480085\\
6.2 0.486118\\
6.4 0.472945\\
6.6 0.441969\\
6.8 0.395181\\
7 0.335068\\
7.3 0.22627\\
7.8 0.0220226\\
8.1 -0.0964531\\
8.4 -0.199726\\
8.6 -0.256121\\
8.8 -0.300405\\
9 -0.33132\\
9.2 -0.348158\\
9.4 -0.350769\\
9.6 -0.339548\\
9.8 -0.315399\\
10 -0.279691\\
10.2 -0.234185\\
10.5 -0.152172\\
11.5 0.143201\\
11.7 0.189079\\
11.9 0.226207\\
12.1 0.253392\\
12.3 0.269855\\
12.5 0.275255\\
12.7 0.269683\\
12.9 0.253654\\
13.1 0.228071\\
13.4 0.174596\\
13.7 0.107866\\
14.7 -0.127805\\
15 -0.17875\\
15.2 -0.203195\\
15.4 -0.21907\\
15.6 -0.225949\\
15.8 -0.223768\\
16 -0.212813\\
16.3 -0.181378\\
16.6 -0.135017\\
17 -0.0579291\\
17.7 0.0830239\\
18 0.132063\\
18.3 0.168031\\
18.6 0.18816\\
18.9 0.191144\\
19.2 0.177211\\
19.5 0.148059\\
19.8 0.106665\\
20.3 0.0215358\\
20.9 -0.0806055\\
21.2 -0.121212\\
21.5 -0.150092\\
21.8 -0.165006\\
22.1 -0.164993\\
22.4 -0.150423\\
22.7 -0.122933\\
23.1 -0.0710263\\
24.3 0.102335\\
24.6 0.129537\\
24.9 0.14469\\
25.2 0.146726\\
25.5 0.135755\\
25.8 0.113025\\
26.2 0.0684436\\
27.5 -0.0969338\\
27.8 -0.119409\\
28.1 -0.130876\\
28.4 -0.130541\\
28.7 -0.118666\\
29 -0.0965236\\
29.4 -0.0548504\\
30.6 0.0840729\\
30.9 0.105755\\
31.2 0.117684\\
31.5 0.118981\\
31.8 0.109721\\
32.2 0.082812\\
32.7 0.0326006\\
33.6 -0.0646686\\
34 -0.0942856\\
34.3 -0.106559\\
34.6 -0.109191\\
34.9 -0.102106\\
35.3 -0.0790127\\
35.8 -0.0341216\\
36.8 0.0641552\\
37.2 0.0895927\\
37.6 0.100514\\
38 0.0955074\\
38.4 0.0756703\\
38.9 0.0353574\\
40 -0.0635179\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 20,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis x line*=top,
axis y line*=right
]
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
1 1\\
1.2 0.833333\\
1.4 0.714286\\
1.6 0.625\\
1.8 0.555556\\
2 0.5\\
2.2 0.454545\\
2.4 0.416667\\
2.6 0.384615\\
2.8 0.357143\\
3 0.333333\\
3.2 0.3125\\
3.4 0.294118\\
3.8 0.263158\\
4.2 0.238095\\
4.6 0.217391\\
5 0.2\\
5.6 0.178571\\
6.2 0.16129\\
7 0.142857\\
8 0.125\\
9.2 0.108696\\
10.6 0.0943396\\
12.2 0.0819672\\
14.2 0.0704225\\
16.8 0.0595238\\
20 0.05\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap/redyellow,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 100,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 100,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot[scatter,only marks,scatter src=explicit,scatter/use mapped color={mark=o,mark options={},draw=mapped color},visualization depends on={\thisrowno{2} \as \perpointmarksize},scatter/@pre marker code/.append style={/tikz/mark size=\perpointmarksize}] plot table[row sep=crcr,meta index=3]{%
1 1 9.81167 1\\
2 2 1.7435 256\\
3 3 9.5692 6561\\
4 4 7.30796 65536\\
5 5 8.60129 390625\\
6 6 5.41414 1.67962e+06\\
7 7 11.0291 5.7648e+06\\
8 8 3.49715 1.67772e+07\\
9 9 6.65142 4.30467e+07\\
10 10 11.1206 1e+08\\
11 11 9.17597 2.14359e+08\\
12 12 3.98306 4.29982e+08\\
13 13 1.40346 8.15731e+08\\
14 14 5.47687 1.47579e+09\\
15 15 8.00278 2.56289e+09\\
16 16 9.3269 4.29497e+09\\
17 17 9.87068 6.97576e+09\\
18 18 9.89277 1.102e+10\\
19 19 9.41976 1.69836e+10\\
20 20 8.26339 2.56e+10\\
21 21 6.10502 3.78229e+10\\
22 22 2.67611 5.48759e+10\\
23 23 1.93768 7.8311e+10\\
24 24 6.92784 1.10075e+11\\
25 25 10.5703 1.52588e+11\\
26 26 10.6343 2.08827e+11\\
27 27 5.72688 2.8243e+11\\
28 28 2.80514 3.77802e+11\\
29 29 10.0432 5.00246e+11\\
30 30 9.93248 6.561e+11\\
31 31 1.04329 8.52891e+11\\
32 32 9.24945 1.09951e+12\\
33 33 9.60379 1.40641e+12\\
34 34 1.84757 1.78579e+12\\
35 35 11.0691 2.25188e+12\\
36 36 4.19832 2.82111e+12\\
37 37 9.43543 3.51248e+12\\
38 38 7.08093 4.34779e+12\\
39 39 8.22117 5.35201e+12\\
40 40 7.56676 6.5536e+12\\
41 41 8.67349 7.98493e+12\\
42 42 5.97409 9.68265e+12\\
43 43 10.3546 1.16882e+13\\
44 44 1.69915 1.40482e+13\\
45 45 11.0738 1.68151e+13\\
46 46 5.20993 2.00476e+13\\
47 47 7.06604 2.38113e+13\\
48 48 10.8922 2.81793e+13\\
49 49 3.12412 3.32329e+13\\
50 50 7.39976 3.90625e+13\\
51 51 11.1176 4.57679e+13\\
52 52 5.97577 5.34597e+13\\
53 53 3.14382 6.22597e+13\\
54 54 9.87354 7.2302e+13\\
55 55 10.8101 8.37339e+13\\
56 56 6.46795 9.67173e+13\\
57 57 0.322121 1.11429e+14\\
58 58 6.54034 1.28063e+14\\
59 59 10.3016 1.4683e+14\\
60 60 11.1258 1.67962e+14\\
61 61 9.5407 1.91707e+14\\
62 62 6.50357 2.1834e+14\\
63 63 2.94855 2.48156e+14\\
64 64 0.444874 2.81475e+14\\
65 65 3.29985 3.18645e+14\\
66 66 5.48631 3.60041e+14\\
67 67 7.03046 4.06068e+14\\
68 68 8.03087 4.57163e+14\\
69 69 8.59718 5.13798e+14\\
70 70 8.81252 5.7648e+14\\
71 71 8.71447 6.45754e+14\\
72 72 8.2891 7.22204e+14\\
73 73 7.47524 8.0646e+14\\
74 74 6.17955 8.99195e+14\\
75 75 4.30552 1.00113e+15\\
76 76 1.80005 1.11303e+15\\
77 77 1.282 1.23574e+15\\
78 78 4.70419 1.37011e+15\\
79 79 7.98983 1.51711e+15\\
80 80 10.421 1.67772e+15\\
81 81 11.1487 1.85302e+15\\
82 82 9.45559 2.04414e+15\\
83 83 5.15215 2.25229e+15\\
84 84 1.01888 2.47876e+15\\
85 85 7.22268 2.72491e+15\\
86 86 10.9189 2.99218e+15\\
87 87 9.93985 3.28212e+15\\
88 88 3.96832 3.59635e+15\\
89 89 4.45188 3.93659e+15\\
90 90 10.5059 4.30467e+15\\
91 91 9.79797 4.70253e+15\\
92 92 1.97155 5.13219e+15\\
93 93 7.64389 5.59582e+15\\
94 94 11.0532 6.09569e+15\\
95 95 4.47898 6.6342e+15\\
96 96 6.62228 7.2139e+15\\
97 97 11.0589 7.83743e+15\\
98 98 3.3127 8.50763e+15\\
99 99 8.46952 9.22745e+15\\
100 100 9.88174 1e+16\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=210.8,
xmax=211.7,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-48.45,
ymax=-47.95,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot[scatter,only marks,scatter src=explicit,scatter/use mapped color={mark=triangle,mark options={},draw=mapped color}] plot table[row sep=crcr,meta index=2]{%
211.18 -47.97 -4250\\
211.28 -47.97 -4250\\
211.1 -47.98 -4250\\
211.38 -47.98 -4250\\
211.45 -48 -4250\\
211.23 -48.01 -3900\\
211.31 -48.01 -3950\\
210.98 -48.02 -4250\\
211.13 -48.02 -3900\\
211.39 -48.02 -4000\\
211.06 -48.03 -4050\\
211.51 -48.03 -4250\\
211.19 -48.04 -3700\\
211.26 -48.04 -3730\\
211.32 -48.05 -3650\\
211.1 -48.06 -3800\\
211.01 -48.07 -3980\\
211.39 -48.07 -3700\\
211.48 -48.07 -3980\\
211.17 -48.08 -3280\\
211.21 -48.08 -3100\\
211.25 -48.08 -3140\\
211.29 -48.08 -3250\\
210.91 -48.09 -4250\\
211.57 -48.09 -4250\\
211.15 -48.1 -3150\\
211.19 -48.1 -3000\\
211.23 -48.1 -2850\\
211.27 -48.1 -3000\\
211.31 -48.1 -3100\\
211.34 -48.1 -3220\\
211.06 -48.11 -3630\\
211.47 -48.11 -3765\\
211.13 -48.12 -3170\\
211.17 -48.12 -2875\\
211.21 -48.12 -2600\\
211.25 -48.12 -2600\\
211.29 -48.12 -2575\\
211.32 -48.12 -2950\\
211.53 -48.12 -4070\\
210.96 -48.14 -3920\\
211.11 -48.14 -2950\\
211.15 -48.14 -2550\\
211.19 -48.14 -2350\\
211.23 -48.14 -2195\\
211.27 -48.14 -2080\\
211.3 -48.14 -2450\\
211.34 -48.14 -2925\\
211.38 -48.14 -3125\\
211.04 -48.15 -3450\\
211.16 -48.15 -2110\\
211.18 -48.15 -2100\\
211.2 -48.15 -1760\\
211.22 -48.15 -1920\\
211.24 -48.15 -1900\\
211.26 -48.15 -1750\\
211.28 -48.15 -2110\\
211.51 -48.15 -3950\\
211.6 -48.15 -4250\\
211.09 -48.16 -2950\\
211.13 -48.16 -2570\\
211.15 -48.16 -1950\\
211.17 -48.16 -1750\\
211.19 -48.16 -1480\\
211.2 -48.16 -1325\\
211.21 -48.16 -1350\\
211.23 -48.16 -1650\\
211.25 -48.16 -1375\\
211.27 -48.16 -1780\\
211.29 -48.16 -2125\\
211.31 -48.16 -2200\\
211.36 -48.16 -2940\\
211.42 -48.16 -3450\\
211.19 -48.165 -1150\\
211.2 -48.165 -1125\\
211.21 -48.165 -1150\\
211.25 -48.165 -1125\\
211.14 -48.17 -2250\\
211.16 -48.17 -1875\\
211.18 -48.17 -1340\\
211.19 -48.17 -1075\\
211.2 -48.17 -850\\
211.21 -48.17 -850\\
211.22 -48.17 -1100\\
211.23 -48.17 -1375\\
211.24 -48.17 -1175\\
211.25 -48.17 -950\\
211.26 -48.17 -1300\\
211.28 -48.17 -1825\\
211.3 -48.17 -1850\\
211.32 -48.17 -2110\\
211.19 -48.175 -1125\\
211.2 -48.175 -800\\
211.21 -48.175 -700\\
211.22 -48.175 -1020\\
211.23 -48.175 -1175\\
211.24 -48.175 -900\\
211.25 -48.175 -900\\
211.07 -48.18 -3050\\
211.11 -48.18 -2615\\
211.15 -48.18 -1850\\
211.17 -48.18 -1730\\
211.19 -48.18 -1150\\
211.2 -48.18 -1025\\
211.21 -48.18 -600\\
211.22 -48.18 -900\\
211.23 -48.18 -1050\\
211.24 -48.18 -800\\
211.25 -48.18 -950\\
211.26 -48.18 -1300\\
211.27 -48.18 -1370\\
211.28 -48.18 -1450\\
211.29 -48.18 -1490\\
211.31 -48.18 -1850\\
211.34 -48.18 -2575\\
211.38 -48.18 -3350\\
211.19 -48.185 -1300\\
211.2 -48.185 -1050\\
211.21 -48.185 -650\\
211.22 -48.185 -770\\
211.23 -48.185 -750\\
211.24 -48.185 -620\\
211.25 -48.185 -950\\
211.26 -48.185 -1150\\
211.27 -48.185 -1000\\
211.28 -48.185 -1150\\
210.89 -48.19 -4250\\
211 -48.19 -3650\\
211.14 -48.19 -2300\\
211.16 -48.19 -1940\\
211.18 -48.19 -1550\\
211.2 -48.19 -1050\\
211.21 -48.19 -675\\
211.22 -48.19 -600\\
211.23 -48.19 -590\\
211.24 -48.19 -650\\
211.25 -48.19 -800\\
211.26 -48.19 -1050\\
211.27 -48.19 -950\\
211.28 -48.19 -1000\\
211.3 -48.19 -1780\\
211.19 -48.19 -1150\\
211.2 -48.195 -850\\
211.21 -48.195 -600\\
211.22 -48.195 -570\\
211.23 -48.195 -555\\
211.24 -48.195 -580\\
211.25 -48.195 -700\\
211.26 -48.195 -750\\
211.27 -48.195 -875\\
211.28 -48.195 -1020\\
211.05 -48.2 -3275\\
211.09 -48.2 -2865\\
211.13 -48.2 -2480\\
211.15 -48.2 -2025\\
211.17 -48.2 -1375\\
211.18 -48.2 -1000\\
211.19 -48.2 -825\\
211.2 -48.2 -700\\
211.21 -48.2 -580\\
211.22 -48.2 -510\\
211.23 -48.2 -500\\
211.24 -48.2 -550\\
211.25 -48.2 -600\\
211.26 -48.2 -735\\
211.27 -48.2 -875\\
211.28 -48.2 -1150\\
211.29 -48.2 -1500\\
211.31 -48.2 -2150\\
211.36 -48.2 -3000\\
211.4 -48.2 -3380\\
211.48 -48.2 -3780\\
211.57 -48.2 -4025\\
211.18 -48.205 -950\\
211.19 -48.205 -800\\
211.2 -48.205 -740\\
211.21 -48.205 -595\\
211.22 -48.205 -595\\
211.23 -48.205 -490\\
211.24 -48.205 -650\\
211.25 -48.205 -748\\
211.26 -48.205 -850\\
211.27 -48.205 -1000\\
211.16 -48.21 -1700\\
211.18 -48.21 -1200\\
211.19 -48.21 -1000\\
211.2 -48.21 -850\\
211.21 -48.21 -765\\
211.22 -48.21 -780\\
211.23 -48.21 -560\\
211.24 -48.21 -750\\
211.25 -48.21 -850\\
211.26 -48.21 -1040\\
211.27 -48.21 -1200\\
211.28 -48.21 -1300\\
211.3 -48.21 -1600\\
211.19 -48.215 -1100\\
211.2 -48.215 -1000\\
211.21 -48.215 -975\\
211.22 -48.215 -925\\
211.23 -48.215 -725\\
211.24 -48.215 -800\\
211.25 -48.215 -1050\\
210.95 -48.22 -4050\\
211.07 -48.22 -3700\\
211.11 -48.22 -2910\\
211.15 -48.22 -2150\\
211.17 -48.22 -1750\\
211.19 -48.22 -1250\\
211.2 -48.22 -1150\\
211.21 -48.22 -1125\\
211.22 -48.22 -950\\
211.23 -48.22 -950\\
211.24 -48.22 -925\\
211.25 -48.22 -1125\\
211.27 -48.22 -1350\\
211.29 -48.22 -1650\\
211.31 -48.22 -1750\\
211.34 -48.22 -2500\\
211.38 -48.22 -3025\\
211.42 -48.22 -3400\\
211.16 -48.23 -2200\\
211.18 -48.23 -1850\\
211.2 -48.23 -1500\\
211.22 -48.23 -1325\\
211.24 -48.23 -1375\\
211.26 -48.23 -1530\\
211.28 -48.23 -1680\\
211.3 -48.23 -2000\\
211.02 -48.24 -3700\\
211.09 -48.24 -3325\\
211.13 -48.24 -2875\\
211.17 -48.24 -2200\\
211.19 -48.24 -1850\\
211.21 -48.24 -1600\\
211.23 -48.24 -1900\\
211.25 -48.24 -1800\\
211.27 -48.24 -1930\\
211.29 -48.24 -2000\\
211.31 -48.24 -2250\\
211.36 -48.24 -2800\\
211.4 -48.24 -3220\\
211.44 -48.24 -3500\\
211.53 -48.24 -3650\\
211.65 -48.24 -4250\\
211.18 -48.25 -2150\\
211.2 -48.25 -1840\\
211.22 -48.25 -2275\\
211.24 -48.25 -2275\\
211.26 -48.25 -2150\\
211.28 -48.25 -2250\\
210.93 -48.26 -4250\\
211.11 -48.26 -3240\\
211.15 -48.26 -2675\\
211.19 -48.26 -2100\\
211.23 -48.26 -2575\\
211.27 -48.26 -2400\\
211.3 -48.26 -2550\\
211.34 -48.26 -2820\\
211.38 -48.26 -3050\\
211.42 -48.26 -3400\\
211.06 -48.28 -3725\\
211.13 -48.28 -3120\\
211.17 -48.28 -2800\\
211.21 -48.28 -3050\\
211.25 -48.28 -2925\\
211.28 -48.28 -2775\\
211.32 -48.28 -2920\\
211.36 -48.28 -3190\\
211.4 -48.28 -3260\\
211.49 -48.28 -3780\\
211.59 -48.28 -4050\\
211.26 -48.3 -3250\\
211.3 -48.3 -3140\\
210.99 -48.32 -4250\\
211.08 -48.32 -3950\\
211.15 -48.32 -3750\\
211.22 -48.32 -3630\\
211.28 -48.32 -3420\\
211.36 -48.32 -3420\\
211.46 -48.32 -3735\\
211.56 -48.32 -4015\\
211.66 -48.32 -4250\\
211.18 -48.35 -4010\\
211.1 -48.37 -4250\\
211.26 -48.37 -3950\\
211.34 -48.37 -3850\\
211.42 -48.37 -3900\\
211.5 -48.37 -4050\\
211.6 -48.39 -4250\\
211.22 -48.4 -4250\\
211.3 -48.42 -4250\\
211.38 -48.42 -4250\\
211.46 -48.42 -4250\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -1,
xmax= 1,
tick align=outside,
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -1,
zmax= 1,
zmajorgrids,
view={ 40}{ 35},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[scatter,only marks,scatter src=explicit,scatter/use mapped color={mark=*,mark options={},draw=mapped color,fill=mapped color},visualization depends on={\thisrowno{3} \as \perpointmarksize},scatter/@pre marker code/.append style={/tikz/mark size=\perpointmarksize}] plot table[row sep=crcr,meta index=4]{%
0 0 -0.5 0.790569 1\\
-0.0975452 0 -0.490393 0.790569 1\\
-0.191342 0 -0.46194 0.790569 1\\
-0.277785 0 -0.415735 0.790569 1\\
-0.353553 0 -0.353553 0.790569 1\\
-0.415735 0 -0.277785 0.790569 1\\
-0.46194 0 -0.191342 0.790569 1\\
-0.490393 0 -0.0975452 0.790569 1\\
-0.5 0 0 0.790569 1\\
-0.490393 0 0.0975452 0.790569 1\\
-0.46194 0 0.191342 0.790569 1\\
-0.415735 0 0.277785 0.790569 1\\
-0.353553 0 0.353553 0.790569 1\\
-0.277785 0 0.415735 0.790569 1\\
-0.191342 0 0.46194 0.790569 1\\
-0.0975452 0 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.09012 -0.0373289 -0.490393 0.790569 1\\
-0.176777 -0.0732233 -0.46194 0.790569 1\\
-0.25664 -0.106304 -0.415735 0.790569 1\\
-0.326641 -0.135299 -0.353553 0.790569 1\\
-0.384089 -0.159095 -0.277785 0.790569 1\\
-0.426777 -0.176777 -0.191342 0.790569 1\\
-0.453064 -0.187665 -0.0975452 0.790569 1\\
-0.46194 -0.191342 0 0.790569 1\\
-0.453064 -0.187665 0.0975452 0.790569 1\\
-0.426777 -0.176777 0.191342 0.790569 1\\
-0.384089 -0.159095 0.277785 0.790569 1\\
-0.326641 -0.135299 0.353553 0.790569 1\\
-0.25664 -0.106304 0.415735 0.790569 1\\
-0.176777 -0.0732233 0.46194 0.790569 1\\
-0.09012 -0.0373289 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.0689748 -0.0689748 -0.490393 0.790569 1\\
-0.135299 -0.135299 -0.46194 0.790569 1\\
-0.196424 -0.196424 -0.415735 0.790569 1\\
-0.25 -0.25 -0.353553 0.790569 1\\
-0.293969 -0.293969 -0.277785 0.790569 1\\
-0.326641 -0.326641 -0.191342 0.790569 1\\
-0.34676 -0.34676 -0.0975452 0.790569 1\\
-0.353553 -0.353553 0 0.790569 1\\
-0.34676 -0.34676 0.0975452 0.790569 1\\
-0.326641 -0.326641 0.191342 0.790569 1\\
-0.293969 -0.293969 0.277785 0.790569 1\\
-0.25 -0.25 0.353553 0.790569 1\\
-0.196424 -0.196424 0.415735 0.790569 1\\
-0.135299 -0.135299 0.46194 0.790569 1\\
-0.0689748 -0.0689748 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.0373289 -0.09012 -0.490393 0.790569 1\\
-0.0732233 -0.176777 -0.46194 0.790569 1\\
-0.106304 -0.25664 -0.415735 0.790569 1\\
-0.135299 -0.326641 -0.353553 0.790569 1\\
-0.159095 -0.384089 -0.277785 0.790569 1\\
-0.176777 -0.426777 -0.191342 0.790569 1\\
-0.187665 -0.453064 -0.0975452 0.790569 1\\
-0.191342 -0.46194 0 0.790569 1\\
-0.187665 -0.453064 0.0975452 0.790569 1\\
-0.176777 -0.426777 0.191342 0.790569 1\\
-0.159095 -0.384089 0.277785 0.790569 1\\
-0.135299 -0.326641 0.353553 0.790569 1\\
-0.106304 -0.25664 0.415735 0.790569 1\\
-0.0732233 -0.176777 0.46194 0.790569 1\\
-0.0373289 -0.09012 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
5.97292e-18 -0.0975452 -0.490393 0.790569 1\\
1.17163e-17 -0.191342 -0.46194 0.790569 1\\
1.70094e-17 -0.277785 -0.415735 0.790569 1\\
2.16489e-17 -0.353553 -0.353553 0.790569 1\\
2.54564e-17 -0.415735 -0.277785 0.790569 1\\
2.82857e-17 -0.46194 -0.191342 0.790569 1\\
3.00279e-17 -0.490393 -0.0975452 0.790569 1\\
3.06162e-17 -0.5 0 0.790569 1\\
3.00279e-17 -0.490393 0.0975452 0.790569 1\\
2.82857e-17 -0.46194 0.191342 0.790569 1\\
2.54564e-17 -0.415735 0.277785 0.790569 1\\
2.16489e-17 -0.353553 0.353553 0.790569 1\\
1.70094e-17 -0.277785 0.415735 0.790569 1\\
1.17163e-17 -0.191342 0.46194 0.790569 1\\
5.97292e-18 -0.0975452 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.0373289 -0.09012 -0.490393 0.790569 1\\
0.0732233 -0.176777 -0.46194 0.790569 1\\
0.106304 -0.25664 -0.415735 0.790569 1\\
0.135299 -0.326641 -0.353553 0.790569 1\\
0.159095 -0.384089 -0.277785 0.790569 1\\
0.176777 -0.426777 -0.191342 0.790569 1\\
0.187665 -0.453064 -0.0975452 0.790569 1\\
0.191342 -0.46194 0 0.790569 1\\
0.187665 -0.453064 0.0975452 0.790569 1\\
0.176777 -0.426777 0.191342 0.790569 1\\
0.159095 -0.384089 0.277785 0.790569 1\\
0.135299 -0.326641 0.353553 0.790569 1\\
0.106304 -0.25664 0.415735 0.790569 1\\
0.0732233 -0.176777 0.46194 0.790569 1\\
0.0373289 -0.09012 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.0689748 -0.0689748 -0.490393 0.790569 1\\
0.135299 -0.135299 -0.46194 0.790569 1\\
0.196424 -0.196424 -0.415735 0.790569 1\\
0.25 -0.25 -0.353553 0.790569 1\\
0.293969 -0.293969 -0.277785 0.790569 1\\
0.326641 -0.326641 -0.191342 0.790569 1\\
0.34676 -0.34676 -0.0975452 0.790569 1\\
0.353553 -0.353553 0 0.790569 1\\
0.34676 -0.34676 0.0975452 0.790569 1\\
0.326641 -0.326641 0.191342 0.790569 1\\
0.293969 -0.293969 0.277785 0.790569 1\\
0.25 -0.25 0.353553 0.790569 1\\
0.196424 -0.196424 0.415735 0.790569 1\\
0.135299 -0.135299 0.46194 0.790569 1\\
0.0689748 -0.0689748 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.09012 -0.0373289 -0.490393 0.790569 1\\
0.176777 -0.0732233 -0.46194 0.790569 1\\
0.25664 -0.106304 -0.415735 0.790569 1\\
0.326641 -0.135299 -0.353553 0.790569 1\\
0.384089 -0.159095 -0.277785 0.790569 1\\
0.426777 -0.176777 -0.191342 0.790569 1\\
0.453064 -0.187665 -0.0975452 0.790569 1\\
0.46194 -0.191342 0 0.790569 1\\
0.453064 -0.187665 0.0975452 0.790569 1\\
0.426777 -0.176777 0.191342 0.790569 1\\
0.384089 -0.159095 0.277785 0.790569 1\\
0.326641 -0.135299 0.353553 0.790569 1\\
0.25664 -0.106304 0.415735 0.790569 1\\
0.176777 -0.0732233 0.46194 0.790569 1\\
0.09012 -0.0373289 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.0975452 0 -0.490393 0.790569 1\\
0.191342 0 -0.46194 0.790569 1\\
0.277785 0 -0.415735 0.790569 1\\
0.353553 0 -0.353553 0.790569 1\\
0.415735 0 -0.277785 0.790569 1\\
0.46194 0 -0.191342 0.790569 1\\
0.490393 0 -0.0975452 0.790569 1\\
0.5 0 0 0.790569 1\\
0.490393 0 0.0975452 0.790569 1\\
0.46194 0 0.191342 0.790569 1\\
0.415735 0 0.277785 0.790569 1\\
0.353553 0 0.353553 0.790569 1\\
0.277785 0 0.415735 0.790569 1\\
0.191342 0 0.46194 0.790569 1\\
0.0975452 0 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.09012 0.0373289 -0.490393 0.790569 1\\
0.176777 0.0732233 -0.46194 0.790569 1\\
0.25664 0.106304 -0.415735 0.790569 1\\
0.326641 0.135299 -0.353553 0.790569 1\\
0.384089 0.159095 -0.277785 0.790569 1\\
0.426777 0.176777 -0.191342 0.790569 1\\
0.453064 0.187665 -0.0975452 0.790569 1\\
0.46194 0.191342 0 0.790569 1\\
0.453064 0.187665 0.0975452 0.790569 1\\
0.426777 0.176777 0.191342 0.790569 1\\
0.384089 0.159095 0.277785 0.790569 1\\
0.326641 0.135299 0.353553 0.790569 1\\
0.25664 0.106304 0.415735 0.790569 1\\
0.176777 0.0732233 0.46194 0.790569 1\\
0.09012 0.0373289 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.0689748 0.0689748 -0.490393 0.790569 1\\
0.135299 0.135299 -0.46194 0.790569 1\\
0.196424 0.196424 -0.415735 0.790569 1\\
0.25 0.25 -0.353553 0.790569 1\\
0.293969 0.293969 -0.277785 0.790569 1\\
0.326641 0.326641 -0.191342 0.790569 1\\
0.34676 0.34676 -0.0975452 0.790569 1\\
0.353553 0.353553 0 0.790569 1\\
0.34676 0.34676 0.0975452 0.790569 1\\
0.326641 0.326641 0.191342 0.790569 1\\
0.293969 0.293969 0.277785 0.790569 1\\
0.25 0.25 0.353553 0.790569 1\\
0.196424 0.196424 0.415735 0.790569 1\\
0.135299 0.135299 0.46194 0.790569 1\\
0.0689748 0.0689748 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
0.0373289 0.09012 -0.490393 0.790569 1\\
0.0732233 0.176777 -0.46194 0.790569 1\\
0.106304 0.25664 -0.415735 0.790569 1\\
0.135299 0.326641 -0.353553 0.790569 1\\
0.159095 0.384089 -0.277785 0.790569 1\\
0.176777 0.426777 -0.191342 0.790569 1\\
0.187665 0.453064 -0.0975452 0.790569 1\\
0.191342 0.46194 0 0.790569 1\\
0.187665 0.453064 0.0975452 0.790569 1\\
0.176777 0.426777 0.191342 0.790569 1\\
0.159095 0.384089 0.277785 0.790569 1\\
0.135299 0.326641 0.353553 0.790569 1\\
0.106304 0.25664 0.415735 0.790569 1\\
0.0732233 0.176777 0.46194 0.790569 1\\
0.0373289 0.09012 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
5.97292e-18 0.0975452 -0.490393 0.790569 1\\
1.17163e-17 0.191342 -0.46194 0.790569 1\\
1.70094e-17 0.277785 -0.415735 0.790569 1\\
2.16489e-17 0.353553 -0.353553 0.790569 1\\
2.54564e-17 0.415735 -0.277785 0.790569 1\\
2.82857e-17 0.46194 -0.191342 0.790569 1\\
3.00279e-17 0.490393 -0.0975452 0.790569 1\\
3.06162e-17 0.5 0 0.790569 1\\
3.00279e-17 0.490393 0.0975452 0.790569 1\\
2.82857e-17 0.46194 0.191342 0.790569 1\\
2.54564e-17 0.415735 0.277785 0.790569 1\\
2.16489e-17 0.353553 0.353553 0.790569 1\\
1.70094e-17 0.277785 0.415735 0.790569 1\\
1.17163e-17 0.191342 0.46194 0.790569 1\\
5.97292e-18 0.0975452 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.0373289 0.09012 -0.490393 0.790569 1\\
-0.0732233 0.176777 -0.46194 0.790569 1\\
-0.106304 0.25664 -0.415735 0.790569 1\\
-0.135299 0.326641 -0.353553 0.790569 1\\
-0.159095 0.384089 -0.277785 0.790569 1\\
-0.176777 0.426777 -0.191342 0.790569 1\\
-0.187665 0.453064 -0.0975452 0.790569 1\\
-0.191342 0.46194 0 0.790569 1\\
-0.187665 0.453064 0.0975452 0.790569 1\\
-0.176777 0.426777 0.191342 0.790569 1\\
-0.159095 0.384089 0.277785 0.790569 1\\
-0.135299 0.326641 0.353553 0.790569 1\\
-0.106304 0.25664 0.415735 0.790569 1\\
-0.0732233 0.176777 0.46194 0.790569 1\\
-0.0373289 0.09012 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.0689748 0.0689748 -0.490393 0.790569 1\\
-0.135299 0.135299 -0.46194 0.790569 1\\
-0.196424 0.196424 -0.415735 0.790569 1\\
-0.25 0.25 -0.353553 0.790569 1\\
-0.293969 0.293969 -0.277785 0.790569 1\\
-0.326641 0.326641 -0.191342 0.790569 1\\
-0.34676 0.34676 -0.0975452 0.790569 1\\
-0.353553 0.353553 0 0.790569 1\\
-0.34676 0.34676 0.0975452 0.790569 1\\
-0.326641 0.326641 0.191342 0.790569 1\\
-0.293969 0.293969 0.277785 0.790569 1\\
-0.25 0.25 0.353553 0.790569 1\\
-0.196424 0.196424 0.415735 0.790569 1\\
-0.135299 0.135299 0.46194 0.790569 1\\
-0.0689748 0.0689748 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.09012 0.0373289 -0.490393 0.790569 1\\
-0.176777 0.0732233 -0.46194 0.790569 1\\
-0.25664 0.106304 -0.415735 0.790569 1\\
-0.326641 0.135299 -0.353553 0.790569 1\\
-0.384089 0.159095 -0.277785 0.790569 1\\
-0.426777 0.176777 -0.191342 0.790569 1\\
-0.453064 0.187665 -0.0975452 0.790569 1\\
-0.46194 0.191342 0 0.790569 1\\
-0.453064 0.187665 0.0975452 0.790569 1\\
-0.426777 0.176777 0.191342 0.790569 1\\
-0.384089 0.159095 0.277785 0.790569 1\\
-0.326641 0.135299 0.353553 0.790569 1\\
-0.25664 0.106304 0.415735 0.790569 1\\
-0.176777 0.0732233 0.46194 0.790569 1\\
-0.09012 0.0373289 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.5 0.790569 1\\
-0.0975452 0 -0.490393 0.790569 1\\
-0.191342 0 -0.46194 0.790569 1\\
-0.277785 0 -0.415735 0.790569 1\\
-0.353553 0 -0.353553 0.790569 1\\
-0.415735 0 -0.277785 0.790569 1\\
-0.46194 0 -0.191342 0.790569 1\\
-0.490393 0 -0.0975452 0.790569 1\\
-0.5 0 0 0.790569 1\\
-0.490393 0 0.0975452 0.790569 1\\
-0.46194 0 0.191342 0.790569 1\\
-0.415735 0 0.277785 0.790569 1\\
-0.353553 0 0.353553 0.790569 1\\
-0.277785 0 0.415735 0.790569 1\\
-0.191342 0 0.46194 0.790569 1\\
-0.0975452 0 0.490393 0.790569 1\\
0 0 0.5 0.790569 1\\
0 0 -0.75 0.684653 2\\
-0.146318 0 -0.735589 0.684653 2\\
-0.287013 0 -0.69291 0.684653 2\\
-0.416678 0 -0.623602 0.684653 2\\
-0.53033 0 -0.53033 0.684653 2\\
-0.623602 0 -0.416678 0.684653 2\\
-0.69291 0 -0.287013 0.684653 2\\
-0.735589 0 -0.146318 0.684653 2\\
-0.75 0 0 0.684653 2\\
-0.735589 0 0.146318 0.684653 2\\
-0.69291 0 0.287013 0.684653 2\\
-0.623602 0 0.416678 0.684653 2\\
-0.53033 0 0.53033 0.684653 2\\
-0.416678 0 0.623602 0.684653 2\\
-0.287013 0 0.69291 0.684653 2\\
-0.146318 0 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.13518 -0.0559934 -0.735589 0.684653 2\\
-0.265165 -0.109835 -0.69291 0.684653 2\\
-0.38496 -0.159456 -0.623602 0.684653 2\\
-0.489961 -0.202949 -0.53033 0.684653 2\\
-0.576133 -0.238642 -0.416678 0.684653 2\\
-0.640165 -0.265165 -0.287013 0.684653 2\\
-0.679596 -0.281498 -0.146318 0.684653 2\\
-0.69291 -0.287013 0 0.684653 2\\
-0.679596 -0.281498 0.146318 0.684653 2\\
-0.640165 -0.265165 0.287013 0.684653 2\\
-0.576133 -0.238642 0.416678 0.684653 2\\
-0.489961 -0.202949 0.53033 0.684653 2\\
-0.38496 -0.159456 0.623602 0.684653 2\\
-0.265165 -0.109835 0.69291 0.684653 2\\
-0.13518 -0.0559934 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.103462 -0.103462 -0.735589 0.684653 2\\
-0.202949 -0.202949 -0.69291 0.684653 2\\
-0.294636 -0.294636 -0.623602 0.684653 2\\
-0.375 -0.375 -0.53033 0.684653 2\\
-0.440953 -0.440953 -0.416678 0.684653 2\\
-0.489961 -0.489961 -0.287013 0.684653 2\\
-0.52014 -0.52014 -0.146318 0.684653 2\\
-0.53033 -0.53033 0 0.684653 2\\
-0.52014 -0.52014 0.146318 0.684653 2\\
-0.489961 -0.489961 0.287013 0.684653 2\\
-0.440953 -0.440953 0.416678 0.684653 2\\
-0.375 -0.375 0.53033 0.684653 2\\
-0.294636 -0.294636 0.623602 0.684653 2\\
-0.202949 -0.202949 0.69291 0.684653 2\\
-0.103462 -0.103462 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.0559934 -0.13518 -0.735589 0.684653 2\\
-0.109835 -0.265165 -0.69291 0.684653 2\\
-0.159456 -0.38496 -0.623602 0.684653 2\\
-0.202949 -0.489961 -0.53033 0.684653 2\\
-0.238642 -0.576133 -0.416678 0.684653 2\\
-0.265165 -0.640165 -0.287013 0.684653 2\\
-0.281498 -0.679596 -0.146318 0.684653 2\\
-0.287013 -0.69291 0 0.684653 2\\
-0.281498 -0.679596 0.146318 0.684653 2\\
-0.265165 -0.640165 0.287013 0.684653 2\\
-0.238642 -0.576133 0.416678 0.684653 2\\
-0.202949 -0.489961 0.53033 0.684653 2\\
-0.159456 -0.38496 0.623602 0.684653 2\\
-0.109835 -0.265165 0.69291 0.684653 2\\
-0.0559934 -0.13518 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
8.95938e-18 -0.146318 -0.735589 0.684653 2\\
1.75745e-17 -0.287013 -0.69291 0.684653 2\\
2.55141e-17 -0.416678 -0.623602 0.684653 2\\
3.24734e-17 -0.53033 -0.53033 0.684653 2\\
3.81846e-17 -0.623602 -0.416678 0.684653 2\\
4.24285e-17 -0.69291 -0.287013 0.684653 2\\
4.50418e-17 -0.735589 -0.146318 0.684653 2\\
4.59243e-17 -0.75 0 0.684653 2\\
4.50418e-17 -0.735589 0.146318 0.684653 2\\
4.24285e-17 -0.69291 0.287013 0.684653 2\\
3.81846e-17 -0.623602 0.416678 0.684653 2\\
3.24734e-17 -0.53033 0.53033 0.684653 2\\
2.55141e-17 -0.416678 0.623602 0.684653 2\\
1.75745e-17 -0.287013 0.69291 0.684653 2\\
8.95938e-18 -0.146318 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.0559934 -0.13518 -0.735589 0.684653 2\\
0.109835 -0.265165 -0.69291 0.684653 2\\
0.159456 -0.38496 -0.623602 0.684653 2\\
0.202949 -0.489961 -0.53033 0.684653 2\\
0.238642 -0.576133 -0.416678 0.684653 2\\
0.265165 -0.640165 -0.287013 0.684653 2\\
0.281498 -0.679596 -0.146318 0.684653 2\\
0.287013 -0.69291 0 0.684653 2\\
0.281498 -0.679596 0.146318 0.684653 2\\
0.265165 -0.640165 0.287013 0.684653 2\\
0.238642 -0.576133 0.416678 0.684653 2\\
0.202949 -0.489961 0.53033 0.684653 2\\
0.159456 -0.38496 0.623602 0.684653 2\\
0.109835 -0.265165 0.69291 0.684653 2\\
0.0559934 -0.13518 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.103462 -0.103462 -0.735589 0.684653 2\\
0.202949 -0.202949 -0.69291 0.684653 2\\
0.294636 -0.294636 -0.623602 0.684653 2\\
0.375 -0.375 -0.53033 0.684653 2\\
0.440953 -0.440953 -0.416678 0.684653 2\\
0.489961 -0.489961 -0.287013 0.684653 2\\
0.52014 -0.52014 -0.146318 0.684653 2\\
0.53033 -0.53033 0 0.684653 2\\
0.52014 -0.52014 0.146318 0.684653 2\\
0.489961 -0.489961 0.287013 0.684653 2\\
0.440953 -0.440953 0.416678 0.684653 2\\
0.375 -0.375 0.53033 0.684653 2\\
0.294636 -0.294636 0.623602 0.684653 2\\
0.202949 -0.202949 0.69291 0.684653 2\\
0.103462 -0.103462 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.13518 -0.0559934 -0.735589 0.684653 2\\
0.265165 -0.109835 -0.69291 0.684653 2\\
0.38496 -0.159456 -0.623602 0.684653 2\\
0.489961 -0.202949 -0.53033 0.684653 2\\
0.576133 -0.238642 -0.416678 0.684653 2\\
0.640165 -0.265165 -0.287013 0.684653 2\\
0.679596 -0.281498 -0.146318 0.684653 2\\
0.69291 -0.287013 0 0.684653 2\\
0.679596 -0.281498 0.146318 0.684653 2\\
0.640165 -0.265165 0.287013 0.684653 2\\
0.576133 -0.238642 0.416678 0.684653 2\\
0.489961 -0.202949 0.53033 0.684653 2\\
0.38496 -0.159456 0.623602 0.684653 2\\
0.265165 -0.109835 0.69291 0.684653 2\\
0.13518 -0.0559934 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.146318 0 -0.735589 0.684653 2\\
0.287013 0 -0.69291 0.684653 2\\
0.416678 0 -0.623602 0.684653 2\\
0.53033 0 -0.53033 0.684653 2\\
0.623602 0 -0.416678 0.684653 2\\
0.69291 0 -0.287013 0.684653 2\\
0.735589 0 -0.146318 0.684653 2\\
0.75 0 0 0.684653 2\\
0.735589 0 0.146318 0.684653 2\\
0.69291 0 0.287013 0.684653 2\\
0.623602 0 0.416678 0.684653 2\\
0.53033 0 0.53033 0.684653 2\\
0.416678 0 0.623602 0.684653 2\\
0.287013 0 0.69291 0.684653 2\\
0.146318 0 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.13518 0.0559934 -0.735589 0.684653 2\\
0.265165 0.109835 -0.69291 0.684653 2\\
0.38496 0.159456 -0.623602 0.684653 2\\
0.489961 0.202949 -0.53033 0.684653 2\\
0.576133 0.238642 -0.416678 0.684653 2\\
0.640165 0.265165 -0.287013 0.684653 2\\
0.679596 0.281498 -0.146318 0.684653 2\\
0.69291 0.287013 0 0.684653 2\\
0.679596 0.281498 0.146318 0.684653 2\\
0.640165 0.265165 0.287013 0.684653 2\\
0.576133 0.238642 0.416678 0.684653 2\\
0.489961 0.202949 0.53033 0.684653 2\\
0.38496 0.159456 0.623602 0.684653 2\\
0.265165 0.109835 0.69291 0.684653 2\\
0.13518 0.0559934 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.103462 0.103462 -0.735589 0.684653 2\\
0.202949 0.202949 -0.69291 0.684653 2\\
0.294636 0.294636 -0.623602 0.684653 2\\
0.375 0.375 -0.53033 0.684653 2\\
0.440953 0.440953 -0.416678 0.684653 2\\
0.489961 0.489961 -0.287013 0.684653 2\\
0.52014 0.52014 -0.146318 0.684653 2\\
0.53033 0.53033 0 0.684653 2\\
0.52014 0.52014 0.146318 0.684653 2\\
0.489961 0.489961 0.287013 0.684653 2\\
0.440953 0.440953 0.416678 0.684653 2\\
0.375 0.375 0.53033 0.684653 2\\
0.294636 0.294636 0.623602 0.684653 2\\
0.202949 0.202949 0.69291 0.684653 2\\
0.103462 0.103462 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
0.0559934 0.13518 -0.735589 0.684653 2\\
0.109835 0.265165 -0.69291 0.684653 2\\
0.159456 0.38496 -0.623602 0.684653 2\\
0.202949 0.489961 -0.53033 0.684653 2\\
0.238642 0.576133 -0.416678 0.684653 2\\
0.265165 0.640165 -0.287013 0.684653 2\\
0.281498 0.679596 -0.146318 0.684653 2\\
0.287013 0.69291 0 0.684653 2\\
0.281498 0.679596 0.146318 0.684653 2\\
0.265165 0.640165 0.287013 0.684653 2\\
0.238642 0.576133 0.416678 0.684653 2\\
0.202949 0.489961 0.53033 0.684653 2\\
0.159456 0.38496 0.623602 0.684653 2\\
0.109835 0.265165 0.69291 0.684653 2\\
0.0559934 0.13518 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
8.95938e-18 0.146318 -0.735589 0.684653 2\\
1.75745e-17 0.287013 -0.69291 0.684653 2\\
2.55141e-17 0.416678 -0.623602 0.684653 2\\
3.24734e-17 0.53033 -0.53033 0.684653 2\\
3.81846e-17 0.623602 -0.416678 0.684653 2\\
4.24285e-17 0.69291 -0.287013 0.684653 2\\
4.50418e-17 0.735589 -0.146318 0.684653 2\\
4.59243e-17 0.75 0 0.684653 2\\
4.50418e-17 0.735589 0.146318 0.684653 2\\
4.24285e-17 0.69291 0.287013 0.684653 2\\
3.81846e-17 0.623602 0.416678 0.684653 2\\
3.24734e-17 0.53033 0.53033 0.684653 2\\
2.55141e-17 0.416678 0.623602 0.684653 2\\
1.75745e-17 0.287013 0.69291 0.684653 2\\
8.95938e-18 0.146318 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.0559934 0.13518 -0.735589 0.684653 2\\
-0.109835 0.265165 -0.69291 0.684653 2\\
-0.159456 0.38496 -0.623602 0.684653 2\\
-0.202949 0.489961 -0.53033 0.684653 2\\
-0.238642 0.576133 -0.416678 0.684653 2\\
-0.265165 0.640165 -0.287013 0.684653 2\\
-0.281498 0.679596 -0.146318 0.684653 2\\
-0.287013 0.69291 0 0.684653 2\\
-0.281498 0.679596 0.146318 0.684653 2\\
-0.265165 0.640165 0.287013 0.684653 2\\
-0.238642 0.576133 0.416678 0.684653 2\\
-0.202949 0.489961 0.53033 0.684653 2\\
-0.159456 0.38496 0.623602 0.684653 2\\
-0.109835 0.265165 0.69291 0.684653 2\\
-0.0559934 0.13518 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.103462 0.103462 -0.735589 0.684653 2\\
-0.202949 0.202949 -0.69291 0.684653 2\\
-0.294636 0.294636 -0.623602 0.684653 2\\
-0.375 0.375 -0.53033 0.684653 2\\
-0.440953 0.440953 -0.416678 0.684653 2\\
-0.489961 0.489961 -0.287013 0.684653 2\\
-0.52014 0.52014 -0.146318 0.684653 2\\
-0.53033 0.53033 0 0.684653 2\\
-0.52014 0.52014 0.146318 0.684653 2\\
-0.489961 0.489961 0.287013 0.684653 2\\
-0.440953 0.440953 0.416678 0.684653 2\\
-0.375 0.375 0.53033 0.684653 2\\
-0.294636 0.294636 0.623602 0.684653 2\\
-0.202949 0.202949 0.69291 0.684653 2\\
-0.103462 0.103462 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.13518 0.0559934 -0.735589 0.684653 2\\
-0.265165 0.109835 -0.69291 0.684653 2\\
-0.38496 0.159456 -0.623602 0.684653 2\\
-0.489961 0.202949 -0.53033 0.684653 2\\
-0.576133 0.238642 -0.416678 0.684653 2\\
-0.640165 0.265165 -0.287013 0.684653 2\\
-0.679596 0.281498 -0.146318 0.684653 2\\
-0.69291 0.287013 0 0.684653 2\\
-0.679596 0.281498 0.146318 0.684653 2\\
-0.640165 0.265165 0.287013 0.684653 2\\
-0.576133 0.238642 0.416678 0.684653 2\\
-0.489961 0.202949 0.53033 0.684653 2\\
-0.38496 0.159456 0.623602 0.684653 2\\
-0.265165 0.109835 0.69291 0.684653 2\\
-0.13518 0.0559934 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -0.75 0.684653 2\\
-0.146318 0 -0.735589 0.684653 2\\
-0.287013 0 -0.69291 0.684653 2\\
-0.416678 0 -0.623602 0.684653 2\\
-0.53033 0 -0.53033 0.684653 2\\
-0.623602 0 -0.416678 0.684653 2\\
-0.69291 0 -0.287013 0.684653 2\\
-0.735589 0 -0.146318 0.684653 2\\
-0.75 0 0 0.684653 2\\
-0.735589 0 0.146318 0.684653 2\\
-0.69291 0 0.287013 0.684653 2\\
-0.623602 0 0.416678 0.684653 2\\
-0.53033 0 0.53033 0.684653 2\\
-0.416678 0 0.623602 0.684653 2\\
-0.287013 0 0.69291 0.684653 2\\
-0.146318 0 0.735589 0.684653 2\\
0 0 0.75 0.684653 2\\
0 0 -1 0.559017 3\\
-0.19509 0 -0.980785 0.559017 3\\
-0.382683 0 -0.92388 0.559017 3\\
-0.55557 0 -0.83147 0.559017 3\\
-0.707107 0 -0.707107 0.559017 3\\
-0.83147 0 -0.55557 0.559017 3\\
-0.92388 0 -0.382683 0.559017 3\\
-0.980785 0 -0.19509 0.559017 3\\
-1 0 0 0.559017 3\\
-0.980785 0 0.19509 0.559017 3\\
-0.92388 0 0.382683 0.559017 3\\
-0.83147 0 0.55557 0.559017 3\\
-0.707107 0 0.707107 0.559017 3\\
-0.55557 0 0.83147 0.559017 3\\
-0.382683 0 0.92388 0.559017 3\\
-0.19509 0 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.18024 -0.0746578 -0.980785 0.559017 3\\
-0.353553 -0.146447 -0.92388 0.559017 3\\
-0.51328 -0.212608 -0.83147 0.559017 3\\
-0.653281 -0.270598 -0.707107 0.559017 3\\
-0.768178 -0.31819 -0.55557 0.559017 3\\
-0.853553 -0.353553 -0.382683 0.559017 3\\
-0.906127 -0.37533 -0.19509 0.559017 3\\
-0.92388 -0.382683 0 0.559017 3\\
-0.906127 -0.37533 0.19509 0.559017 3\\
-0.853553 -0.353553 0.382683 0.559017 3\\
-0.768178 -0.31819 0.55557 0.559017 3\\
-0.653281 -0.270598 0.707107 0.559017 3\\
-0.51328 -0.212608 0.83147 0.559017 3\\
-0.353553 -0.146447 0.92388 0.559017 3\\
-0.18024 -0.0746578 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.13795 -0.13795 -0.980785 0.559017 3\\
-0.270598 -0.270598 -0.92388 0.559017 3\\
-0.392847 -0.392847 -0.83147 0.559017 3\\
-0.5 -0.5 -0.707107 0.559017 3\\
-0.587938 -0.587938 -0.55557 0.559017 3\\
-0.653281 -0.653281 -0.382683 0.559017 3\\
-0.69352 -0.69352 -0.19509 0.559017 3\\
-0.707107 -0.707107 0 0.559017 3\\
-0.69352 -0.69352 0.19509 0.559017 3\\
-0.653281 -0.653281 0.382683 0.559017 3\\
-0.587938 -0.587938 0.55557 0.559017 3\\
-0.5 -0.5 0.707107 0.559017 3\\
-0.392847 -0.392847 0.83147 0.559017 3\\
-0.270598 -0.270598 0.92388 0.559017 3\\
-0.13795 -0.13795 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.0746578 -0.18024 -0.980785 0.559017 3\\
-0.146447 -0.353553 -0.92388 0.559017 3\\
-0.212608 -0.51328 -0.83147 0.559017 3\\
-0.270598 -0.653281 -0.707107 0.559017 3\\
-0.31819 -0.768178 -0.55557 0.559017 3\\
-0.353553 -0.853553 -0.382683 0.559017 3\\
-0.37533 -0.906127 -0.19509 0.559017 3\\
-0.382683 -0.92388 0 0.559017 3\\
-0.37533 -0.906127 0.19509 0.559017 3\\
-0.353553 -0.853553 0.382683 0.559017 3\\
-0.31819 -0.768178 0.55557 0.559017 3\\
-0.270598 -0.653281 0.707107 0.559017 3\\
-0.212608 -0.51328 0.83147 0.559017 3\\
-0.146447 -0.353553 0.92388 0.559017 3\\
-0.0746578 -0.18024 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
1.19458e-17 -0.19509 -0.980785 0.559017 3\\
2.34326e-17 -0.382683 -0.92388 0.559017 3\\
3.40189e-17 -0.55557 -0.83147 0.559017 3\\
4.32978e-17 -0.707107 -0.707107 0.559017 3\\
5.09128e-17 -0.83147 -0.55557 0.559017 3\\
5.65713e-17 -0.92388 -0.382683 0.559017 3\\
6.00558e-17 -0.980785 -0.19509 0.559017 3\\
6.12323e-17 -1 0 0.559017 3\\
6.00558e-17 -0.980785 0.19509 0.559017 3\\
5.65713e-17 -0.92388 0.382683 0.559017 3\\
5.09128e-17 -0.83147 0.55557 0.559017 3\\
4.32978e-17 -0.707107 0.707107 0.559017 3\\
3.40189e-17 -0.55557 0.83147 0.559017 3\\
2.34326e-17 -0.382683 0.92388 0.559017 3\\
1.19458e-17 -0.19509 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.0746578 -0.18024 -0.980785 0.559017 3\\
0.146447 -0.353553 -0.92388 0.559017 3\\
0.212608 -0.51328 -0.83147 0.559017 3\\
0.270598 -0.653281 -0.707107 0.559017 3\\
0.31819 -0.768178 -0.55557 0.559017 3\\
0.353553 -0.853553 -0.382683 0.559017 3\\
0.37533 -0.906127 -0.19509 0.559017 3\\
0.382683 -0.92388 0 0.559017 3\\
0.37533 -0.906127 0.19509 0.559017 3\\
0.353553 -0.853553 0.382683 0.559017 3\\
0.31819 -0.768178 0.55557 0.559017 3\\
0.270598 -0.653281 0.707107 0.559017 3\\
0.212608 -0.51328 0.83147 0.559017 3\\
0.146447 -0.353553 0.92388 0.559017 3\\
0.0746578 -0.18024 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.13795 -0.13795 -0.980785 0.559017 3\\
0.270598 -0.270598 -0.92388 0.559017 3\\
0.392847 -0.392847 -0.83147 0.559017 3\\
0.5 -0.5 -0.707107 0.559017 3\\
0.587938 -0.587938 -0.55557 0.559017 3\\
0.653281 -0.653281 -0.382683 0.559017 3\\
0.69352 -0.69352 -0.19509 0.559017 3\\
0.707107 -0.707107 0 0.559017 3\\
0.69352 -0.69352 0.19509 0.559017 3\\
0.653281 -0.653281 0.382683 0.559017 3\\
0.587938 -0.587938 0.55557 0.559017 3\\
0.5 -0.5 0.707107 0.559017 3\\
0.392847 -0.392847 0.83147 0.559017 3\\
0.270598 -0.270598 0.92388 0.559017 3\\
0.13795 -0.13795 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.18024 -0.0746578 -0.980785 0.559017 3\\
0.353553 -0.146447 -0.92388 0.559017 3\\
0.51328 -0.212608 -0.83147 0.559017 3\\
0.653281 -0.270598 -0.707107 0.559017 3\\
0.768178 -0.31819 -0.55557 0.559017 3\\
0.853553 -0.353553 -0.382683 0.559017 3\\
0.906127 -0.37533 -0.19509 0.559017 3\\
0.92388 -0.382683 0 0.559017 3\\
0.906127 -0.37533 0.19509 0.559017 3\\
0.853553 -0.353553 0.382683 0.559017 3\\
0.768178 -0.31819 0.55557 0.559017 3\\
0.653281 -0.270598 0.707107 0.559017 3\\
0.51328 -0.212608 0.83147 0.559017 3\\
0.353553 -0.146447 0.92388 0.559017 3\\
0.18024 -0.0746578 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.19509 0 -0.980785 0.559017 3\\
0.382683 0 -0.92388 0.559017 3\\
0.55557 0 -0.83147 0.559017 3\\
0.707107 0 -0.707107 0.559017 3\\
0.83147 0 -0.55557 0.559017 3\\
0.92388 0 -0.382683 0.559017 3\\
0.980785 0 -0.19509 0.559017 3\\
1 0 0 0.559017 3\\
0.980785 0 0.19509 0.559017 3\\
0.92388 0 0.382683 0.559017 3\\
0.83147 0 0.55557 0.559017 3\\
0.707107 0 0.707107 0.559017 3\\
0.55557 0 0.83147 0.559017 3\\
0.382683 0 0.92388 0.559017 3\\
0.19509 0 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.18024 0.0746578 -0.980785 0.559017 3\\
0.353553 0.146447 -0.92388 0.559017 3\\
0.51328 0.212608 -0.83147 0.559017 3\\
0.653281 0.270598 -0.707107 0.559017 3\\
0.768178 0.31819 -0.55557 0.559017 3\\
0.853553 0.353553 -0.382683 0.559017 3\\
0.906127 0.37533 -0.19509 0.559017 3\\
0.92388 0.382683 0 0.559017 3\\
0.906127 0.37533 0.19509 0.559017 3\\
0.853553 0.353553 0.382683 0.559017 3\\
0.768178 0.31819 0.55557 0.559017 3\\
0.653281 0.270598 0.707107 0.559017 3\\
0.51328 0.212608 0.83147 0.559017 3\\
0.353553 0.146447 0.92388 0.559017 3\\
0.18024 0.0746578 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.13795 0.13795 -0.980785 0.559017 3\\
0.270598 0.270598 -0.92388 0.559017 3\\
0.392847 0.392847 -0.83147 0.559017 3\\
0.5 0.5 -0.707107 0.559017 3\\
0.587938 0.587938 -0.55557 0.559017 3\\
0.653281 0.653281 -0.382683 0.559017 3\\
0.69352 0.69352 -0.19509 0.559017 3\\
0.707107 0.707107 0 0.559017 3\\
0.69352 0.69352 0.19509 0.559017 3\\
0.653281 0.653281 0.382683 0.559017 3\\
0.587938 0.587938 0.55557 0.559017 3\\
0.5 0.5 0.707107 0.559017 3\\
0.392847 0.392847 0.83147 0.559017 3\\
0.270598 0.270598 0.92388 0.559017 3\\
0.13795 0.13795 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
0.0746578 0.18024 -0.980785 0.559017 3\\
0.146447 0.353553 -0.92388 0.559017 3\\
0.212608 0.51328 -0.83147 0.559017 3\\
0.270598 0.653281 -0.707107 0.559017 3\\
0.31819 0.768178 -0.55557 0.559017 3\\
0.353553 0.853553 -0.382683 0.559017 3\\
0.37533 0.906127 -0.19509 0.559017 3\\
0.382683 0.92388 0 0.559017 3\\
0.37533 0.906127 0.19509 0.559017 3\\
0.353553 0.853553 0.382683 0.559017 3\\
0.31819 0.768178 0.55557 0.559017 3\\
0.270598 0.653281 0.707107 0.559017 3\\
0.212608 0.51328 0.83147 0.559017 3\\
0.146447 0.353553 0.92388 0.559017 3\\
0.0746578 0.18024 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
1.19458e-17 0.19509 -0.980785 0.559017 3\\
2.34326e-17 0.382683 -0.92388 0.559017 3\\
3.40189e-17 0.55557 -0.83147 0.559017 3\\
4.32978e-17 0.707107 -0.707107 0.559017 3\\
5.09128e-17 0.83147 -0.55557 0.559017 3\\
5.65713e-17 0.92388 -0.382683 0.559017 3\\
6.00558e-17 0.980785 -0.19509 0.559017 3\\
6.12323e-17 1 0 0.559017 3\\
6.00558e-17 0.980785 0.19509 0.559017 3\\
5.65713e-17 0.92388 0.382683 0.559017 3\\
5.09128e-17 0.83147 0.55557 0.559017 3\\
4.32978e-17 0.707107 0.707107 0.559017 3\\
3.40189e-17 0.55557 0.83147 0.559017 3\\
2.34326e-17 0.382683 0.92388 0.559017 3\\
1.19458e-17 0.19509 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.0746578 0.18024 -0.980785 0.559017 3\\
-0.146447 0.353553 -0.92388 0.559017 3\\
-0.212608 0.51328 -0.83147 0.559017 3\\
-0.270598 0.653281 -0.707107 0.559017 3\\
-0.31819 0.768178 -0.55557 0.559017 3\\
-0.353553 0.853553 -0.382683 0.559017 3\\
-0.37533 0.906127 -0.19509 0.559017 3\\
-0.382683 0.92388 0 0.559017 3\\
-0.37533 0.906127 0.19509 0.559017 3\\
-0.353553 0.853553 0.382683 0.559017 3\\
-0.31819 0.768178 0.55557 0.559017 3\\
-0.270598 0.653281 0.707107 0.559017 3\\
-0.212608 0.51328 0.83147 0.559017 3\\
-0.146447 0.353553 0.92388 0.559017 3\\
-0.0746578 0.18024 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.13795 0.13795 -0.980785 0.559017 3\\
-0.270598 0.270598 -0.92388 0.559017 3\\
-0.392847 0.392847 -0.83147 0.559017 3\\
-0.5 0.5 -0.707107 0.559017 3\\
-0.587938 0.587938 -0.55557 0.559017 3\\
-0.653281 0.653281 -0.382683 0.559017 3\\
-0.69352 0.69352 -0.19509 0.559017 3\\
-0.707107 0.707107 0 0.559017 3\\
-0.69352 0.69352 0.19509 0.559017 3\\
-0.653281 0.653281 0.382683 0.559017 3\\
-0.587938 0.587938 0.55557 0.559017 3\\
-0.5 0.5 0.707107 0.559017 3\\
-0.392847 0.392847 0.83147 0.559017 3\\
-0.270598 0.270598 0.92388 0.559017 3\\
-0.13795 0.13795 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.18024 0.0746578 -0.980785 0.559017 3\\
-0.353553 0.146447 -0.92388 0.559017 3\\
-0.51328 0.212608 -0.83147 0.559017 3\\
-0.653281 0.270598 -0.707107 0.559017 3\\
-0.768178 0.31819 -0.55557 0.559017 3\\
-0.853553 0.353553 -0.382683 0.559017 3\\
-0.906127 0.37533 -0.19509 0.559017 3\\
-0.92388 0.382683 0 0.559017 3\\
-0.906127 0.37533 0.19509 0.559017 3\\
-0.853553 0.353553 0.382683 0.559017 3\\
-0.768178 0.31819 0.55557 0.559017 3\\
-0.653281 0.270598 0.707107 0.559017 3\\
-0.51328 0.212608 0.83147 0.559017 3\\
-0.353553 0.146447 0.92388 0.559017 3\\
-0.18024 0.0746578 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
0 0 -1 0.559017 3\\
-0.19509 0 -0.980785 0.559017 3\\
-0.382683 0 -0.92388 0.559017 3\\
-0.55557 0 -0.83147 0.559017 3\\
-0.707107 0 -0.707107 0.559017 3\\
-0.83147 0 -0.55557 0.559017 3\\
-0.92388 0 -0.382683 0.559017 3\\
-0.980785 0 -0.19509 0.559017 3\\
-1 0 0 0.559017 3\\
-0.980785 0 0.19509 0.559017 3\\
-0.92388 0 0.382683 0.559017 3\\
-0.83147 0 0.55557 0.559017 3\\
-0.707107 0 0.707107 0.559017 3\\
-0.55557 0 0.83147 0.559017 3\\
-0.382683 0 0.92388 0.559017 3\\
-0.19509 0 0.980785 0.559017 3\\
0 0 1 0.559017 3\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.559\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
plot box ratio=1.5 1 1.8,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -1,
xmax= 2,
tick align=outside,
xlabel={x},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
ylabel={y},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -1,
zmax= 0.8,
zlabel={z},
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
title style={font=\bfseries},
title={$\text{a sphere: x}^\text{2}\text{+y}^\text{2}\text{+z}^\text{2}$},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
shader=flat corner,draw=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=31]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0 0 -1 -1\\
-0.104528 0 -0.994522 -0.994522\\
-0.207912 0 -0.978148 -0.978148\\
-0.309017 0 -0.951057 -0.951057\\
-0.406737 0 -0.913545 -0.913545\\
-0.5 0 -0.866025 -0.866025\\
-0.587785 0 -0.809017 -0.809017\\
-0.669131 0 -0.743145 -0.743145\\
-0.743145 0 -0.669131 -0.669131\\
-0.809017 0 -0.587785 -0.587785\\
-0.866025 0 -0.5 -0.5\\
-0.913545 0 -0.406737 -0.406737\\
-0.951057 0 -0.309017 -0.309017\\
-0.978148 0 -0.207912 -0.207912\\
-0.994522 0 -0.104528 -0.104528\\
-1 0 0 0\\
-0.994522 0 0.104528 0.104528\\
-0.978148 0 0.207912 0.207912\\
-0.951057 0 0.309017 0.309017\\
-0.913545 0 0.406737 0.406737\\
-0.866025 0 0.5 0.5\\
-0.809017 0 0.587785 0.587785\\
-0.743145 0 0.669131 0.669131\\
-0.669131 0 0.743145 0.743145\\
-0.587785 0 0.809017 0.809017\\
-0.5 0 0.866025 0.866025\\
-0.406737 0 0.913545 0.913545\\
-0.309017 0 0.951057 0.951057\\
-0.207912 0 0.978148 0.978148\\
-0.104528 0 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.102244 -0.0217327 -0.994522 -0.994522\\
-0.203368 -0.0432273 -0.978148 -0.978148\\
-0.302264 -0.0642482 -0.951057 -0.951057\\
-0.397848 -0.0845653 -0.913545 -0.913545\\
-0.489074 -0.103956 -0.866025 -0.866025\\
-0.574941 -0.122207 -0.809017 -0.809017\\
-0.654508 -0.13912 -0.743145 -0.743145\\
-0.726905 -0.154508 -0.669131 -0.669131\\
-0.791338 -0.168204 -0.587785 -0.587785\\
-0.847101 -0.180057 -0.5 -0.5\\
-0.893582 -0.189937 -0.406737 -0.406737\\
-0.930274 -0.197736 -0.309017 -0.309017\\
-0.956773 -0.203368 -0.207912 -0.207912\\
-0.972789 -0.206773 -0.104528 -0.104528\\
-0.978148 -0.207912 0 0\\
-0.972789 -0.206773 0.104528 0.104528\\
-0.956773 -0.203368 0.207912 0.207912\\
-0.930274 -0.197736 0.309017 0.309017\\
-0.893582 -0.189937 0.406737 0.406737\\
-0.847101 -0.180057 0.5 0.5\\
-0.791338 -0.168204 0.587785 0.587785\\
-0.726905 -0.154508 0.669131 0.669131\\
-0.654508 -0.13912 0.743145 0.743145\\
-0.574941 -0.122207 0.809017 0.809017\\
-0.489074 -0.103956 0.866025 0.866025\\
-0.397848 -0.0845653 0.913545 0.913545\\
-0.302264 -0.0642482 0.951057 0.951057\\
-0.203368 -0.0432273 0.978148 0.978148\\
-0.102244 -0.0217327 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0954915 -0.0425156 -0.994522 -0.994522\\
-0.189937 -0.0845653 -0.978148 -0.978148\\
-0.282301 -0.125689 -0.951057 -0.951057\\
-0.371572 -0.165435 -0.913545 -0.913545\\
-0.456773 -0.203368 -0.866025 -0.866025\\
-0.536969 -0.239074 -0.809017 -0.809017\\
-0.611281 -0.27216 -0.743145 -0.743145\\
-0.678897 -0.302264 -0.669131 -0.669131\\
-0.739074 -0.329057 -0.587785 -0.587785\\
-0.791154 -0.352244 -0.5 -0.5\\
-0.834565 -0.371572 -0.406737 -0.406737\\
-0.868833 -0.38683 -0.309017 -0.309017\\
-0.893582 -0.397848 -0.207912 -0.207912\\
-0.908541 -0.404508 -0.104528 -0.104528\\
-0.913545 -0.406737 0 0\\
-0.908541 -0.404508 0.104528 0.104528\\
-0.893582 -0.397848 0.207912 0.207912\\
-0.868833 -0.38683 0.309017 0.309017\\
-0.834565 -0.371572 0.406737 0.406737\\
-0.791154 -0.352244 0.5 0.5\\
-0.739074 -0.329057 0.587785 0.587785\\
-0.678897 -0.302264 0.669131 0.669131\\
-0.611281 -0.27216 0.743145 0.743145\\
-0.536969 -0.239074 0.809017 0.809017\\
-0.456773 -0.203368 0.866025 0.866025\\
-0.371572 -0.165435 0.913545 0.913545\\
-0.282301 -0.125689 0.951057 0.951057\\
-0.189937 -0.0845653 0.978148 0.978148\\
-0.0954915 -0.0425156 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0845653 -0.0614403 -0.994522 -0.994522\\
-0.168204 -0.122207 -0.978148 -0.978148\\
-0.25 -0.181636 -0.951057 -0.951057\\
-0.329057 -0.239074 -0.913545 -0.913545\\
-0.404508 -0.293893 -0.866025 -0.866025\\
-0.475528 -0.345492 -0.809017 -0.809017\\
-0.541338 -0.393305 -0.743145 -0.743145\\
-0.601217 -0.43681 -0.669131 -0.669131\\
-0.654508 -0.475528 -0.587785 -0.587785\\
-0.700629 -0.509037 -0.5 -0.5\\
-0.739074 -0.536969 -0.406737 -0.406737\\
-0.769421 -0.559017 -0.309017 -0.309017\\
-0.791338 -0.574941 -0.207912 -0.207912\\
-0.804585 -0.584565 -0.104528 -0.104528\\
-0.809017 -0.587785 0 0\\
-0.804585 -0.584565 0.104528 0.104528\\
-0.791338 -0.574941 0.207912 0.207912\\
-0.769421 -0.559017 0.309017 0.309017\\
-0.739074 -0.536969 0.406737 0.406737\\
-0.700629 -0.509037 0.5 0.5\\
-0.654508 -0.475528 0.587785 0.587785\\
-0.601217 -0.43681 0.669131 0.669131\\
-0.541338 -0.393305 0.743145 0.743145\\
-0.475528 -0.345492 0.809017 0.809017\\
-0.404508 -0.293893 0.866025 0.866025\\
-0.329057 -0.239074 0.913545 0.913545\\
-0.25 -0.181636 0.951057 0.951057\\
-0.168204 -0.122207 0.978148 0.978148\\
-0.0845653 -0.0614403 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0699432 -0.0776798 -0.994522 -0.994522\\
-0.13912 -0.154508 -0.978148 -0.978148\\
-0.206773 -0.229644 -0.951057 -0.951057\\
-0.27216 -0.302264 -0.913545 -0.913545\\
-0.334565 -0.371572 -0.866025 -0.866025\\
-0.393305 -0.43681 -0.809017 -0.809017\\
-0.447736 -0.497261 -0.743145 -0.743145\\
-0.497261 -0.552264 -0.669131 -0.669131\\
-0.541338 -0.601217 -0.587785 -0.587785\\
-0.579484 -0.643582 -0.5 -0.5\\
-0.611281 -0.678897 -0.406737 -0.406737\\
-0.636381 -0.706773 -0.309017 -0.309017\\
-0.654508 -0.726905 -0.207912 -0.207912\\
-0.665465 -0.739074 -0.104528 -0.104528\\
-0.669131 -0.743145 0 0\\
-0.665465 -0.739074 0.104528 0.104528\\
-0.654508 -0.726905 0.207912 0.207912\\
-0.636381 -0.706773 0.309017 0.309017\\
-0.611281 -0.678897 0.406737 0.406737\\
-0.579484 -0.643582 0.5 0.5\\
-0.541338 -0.601217 0.587785 0.587785\\
-0.497261 -0.552264 0.669131 0.669131\\
-0.447736 -0.497261 0.743145 0.743145\\
-0.393305 -0.43681 0.809017 0.809017\\
-0.334565 -0.371572 0.866025 0.866025\\
-0.27216 -0.302264 0.913545 0.913545\\
-0.206773 -0.229644 0.951057 0.951057\\
-0.13912 -0.154508 0.978148 0.978148\\
-0.0699432 -0.0776798 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0522642 -0.0905243 -0.994522 -0.994522\\
-0.103956 -0.180057 -0.978148 -0.978148\\
-0.154508 -0.267617 -0.951057 -0.951057\\
-0.203368 -0.352244 -0.913545 -0.913545\\
-0.25 -0.433013 -0.866025 -0.866025\\
-0.293893 -0.509037 -0.809017 -0.809017\\
-0.334565 -0.579484 -0.743145 -0.743145\\
-0.371572 -0.643582 -0.669131 -0.669131\\
-0.404508 -0.700629 -0.587785 -0.587785\\
-0.433013 -0.75 -0.5 -0.5\\
-0.456773 -0.791154 -0.406737 -0.406737\\
-0.475528 -0.823639 -0.309017 -0.309017\\
-0.489074 -0.847101 -0.207912 -0.207912\\
-0.497261 -0.861281 -0.104528 -0.104528\\
-0.5 -0.866025 0 0\\
-0.497261 -0.861281 0.104528 0.104528\\
-0.489074 -0.847101 0.207912 0.207912\\
-0.475528 -0.823639 0.309017 0.309017\\
-0.456773 -0.791154 0.406737 0.406737\\
-0.433013 -0.75 0.5 0.5\\
-0.404508 -0.700629 0.587785 0.587785\\
-0.371572 -0.643582 0.669131 0.669131\\
-0.334565 -0.579484 0.743145 0.743145\\
-0.293893 -0.509037 0.809017 0.809017\\
-0.25 -0.433013 0.866025 0.866025\\
-0.203368 -0.352244 0.913545 0.913545\\
-0.154508 -0.267617 0.951057 0.951057\\
-0.103956 -0.180057 0.978148 0.978148\\
-0.0522642 -0.0905243 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0323011 -0.0994125 -0.994522 -0.994522\\
-0.0642482 -0.197736 -0.978148 -0.978148\\
-0.0954915 -0.293893 -0.951057 -0.951057\\
-0.125689 -0.38683 -0.913545 -0.913545\\
-0.154508 -0.475528 -0.866025 -0.866025\\
-0.181636 -0.559017 -0.809017 -0.809017\\
-0.206773 -0.636381 -0.743145 -0.743145\\
-0.229644 -0.706773 -0.669131 -0.669131\\
-0.25 -0.769421 -0.587785 -0.587785\\
-0.267617 -0.823639 -0.5 -0.5\\
-0.282301 -0.868833 -0.406737 -0.406737\\
-0.293893 -0.904508 -0.309017 -0.309017\\
-0.302264 -0.930274 -0.207912 -0.207912\\
-0.307324 -0.945847 -0.104528 -0.104528\\
-0.309017 -0.951057 0 0\\
-0.307324 -0.945847 0.104528 0.104528\\
-0.302264 -0.930274 0.207912 0.207912\\
-0.293893 -0.904508 0.309017 0.309017\\
-0.282301 -0.868833 0.406737 0.406737\\
-0.267617 -0.823639 0.5 0.5\\
-0.25 -0.769421 0.587785 0.587785\\
-0.229644 -0.706773 0.669131 0.669131\\
-0.206773 -0.636381 0.743145 0.743145\\
-0.181636 -0.559017 0.809017 0.809017\\
-0.154508 -0.475528 0.866025 0.866025\\
-0.125689 -0.38683 0.913545 0.913545\\
-0.0954915 -0.293893 0.951057 0.951057\\
-0.0642482 -0.197736 0.978148 0.978148\\
-0.0323011 -0.0994125 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0109262 -0.103956 -0.994522 -0.994522\\
-0.0217327 -0.206773 -0.978148 -0.978148\\
-0.0323011 -0.307324 -0.951057 -0.951057\\
-0.0425156 -0.404508 -0.913545 -0.913545\\
-0.0522642 -0.497261 -0.866025 -0.866025\\
-0.0614403 -0.584565 -0.809017 -0.809017\\
-0.0699432 -0.665465 -0.743145 -0.743145\\
-0.0776798 -0.739074 -0.669131 -0.669131\\
-0.0845653 -0.804585 -0.587785 -0.587785\\
-0.0905243 -0.861281 -0.5 -0.5\\
-0.0954915 -0.908541 -0.406737 -0.406737\\
-0.0994125 -0.945847 -0.309017 -0.309017\\
-0.102244 -0.972789 -0.207912 -0.207912\\
-0.103956 -0.989074 -0.104528 -0.104528\\
-0.104528 -0.994522 0 0\\
-0.103956 -0.989074 0.104528 0.104528\\
-0.102244 -0.972789 0.207912 0.207912\\
-0.0994125 -0.945847 0.309017 0.309017\\
-0.0954915 -0.908541 0.406737 0.406737\\
-0.0905243 -0.861281 0.5 0.5\\
-0.0845653 -0.804585 0.587785 0.587785\\
-0.0776798 -0.739074 0.669131 0.669131\\
-0.0699432 -0.665465 0.743145 0.743145\\
-0.0614403 -0.584565 0.809017 0.809017\\
-0.0522642 -0.497261 0.866025 0.866025\\
-0.0425156 -0.404508 0.913545 0.913545\\
-0.0323011 -0.307324 0.951057 0.951057\\
-0.0217327 -0.206773 0.978148 0.978148\\
-0.0109262 -0.103956 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0109262 -0.103956 -0.994522 -0.994522\\
0.0217327 -0.206773 -0.978148 -0.978148\\
0.0323011 -0.307324 -0.951057 -0.951057\\
0.0425156 -0.404508 -0.913545 -0.913545\\
0.0522642 -0.497261 -0.866025 -0.866025\\
0.0614403 -0.584565 -0.809017 -0.809017\\
0.0699432 -0.665465 -0.743145 -0.743145\\
0.0776798 -0.739074 -0.669131 -0.669131\\
0.0845653 -0.804585 -0.587785 -0.587785\\
0.0905243 -0.861281 -0.5 -0.5\\
0.0954915 -0.908541 -0.406737 -0.406737\\
0.0994125 -0.945847 -0.309017 -0.309017\\
0.102244 -0.972789 -0.207912 -0.207912\\
0.103956 -0.989074 -0.104528 -0.104528\\
0.104528 -0.994522 0 0\\
0.103956 -0.989074 0.104528 0.104528\\
0.102244 -0.972789 0.207912 0.207912\\
0.0994125 -0.945847 0.309017 0.309017\\
0.0954915 -0.908541 0.406737 0.406737\\
0.0905243 -0.861281 0.5 0.5\\
0.0845653 -0.804585 0.587785 0.587785\\
0.0776798 -0.739074 0.669131 0.669131\\
0.0699432 -0.665465 0.743145 0.743145\\
0.0614403 -0.584565 0.809017 0.809017\\
0.0522642 -0.497261 0.866025 0.866025\\
0.0425156 -0.404508 0.913545 0.913545\\
0.0323011 -0.307324 0.951057 0.951057\\
0.0217327 -0.206773 0.978148 0.978148\\
0.0109262 -0.103956 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0323011 -0.0994125 -0.994522 -0.994522\\
0.0642482 -0.197736 -0.978148 -0.978148\\
0.0954915 -0.293893 -0.951057 -0.951057\\
0.125689 -0.38683 -0.913545 -0.913545\\
0.154508 -0.475528 -0.866025 -0.866025\\
0.181636 -0.559017 -0.809017 -0.809017\\
0.206773 -0.636381 -0.743145 -0.743145\\
0.229644 -0.706773 -0.669131 -0.669131\\
0.25 -0.769421 -0.587785 -0.587785\\
0.267617 -0.823639 -0.5 -0.5\\
0.282301 -0.868833 -0.406737 -0.406737\\
0.293893 -0.904508 -0.309017 -0.309017\\
0.302264 -0.930274 -0.207912 -0.207912\\
0.307324 -0.945847 -0.104528 -0.104528\\
0.309017 -0.951057 0 0\\
0.307324 -0.945847 0.104528 0.104528\\
0.302264 -0.930274 0.207912 0.207912\\
0.293893 -0.904508 0.309017 0.309017\\
0.282301 -0.868833 0.406737 0.406737\\
0.267617 -0.823639 0.5 0.5\\
0.25 -0.769421 0.587785 0.587785\\
0.229644 -0.706773 0.669131 0.669131\\
0.206773 -0.636381 0.743145 0.743145\\
0.181636 -0.559017 0.809017 0.809017\\
0.154508 -0.475528 0.866025 0.866025\\
0.125689 -0.38683 0.913545 0.913545\\
0.0954915 -0.293893 0.951057 0.951057\\
0.0642482 -0.197736 0.978148 0.978148\\
0.0323011 -0.0994125 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0522642 -0.0905243 -0.994522 -0.994522\\
0.103956 -0.180057 -0.978148 -0.978148\\
0.154508 -0.267617 -0.951057 -0.951057\\
0.203368 -0.352244 -0.913545 -0.913545\\
0.25 -0.433013 -0.866025 -0.866025\\
0.293893 -0.509037 -0.809017 -0.809017\\
0.334565 -0.579484 -0.743145 -0.743145\\
0.371572 -0.643582 -0.669131 -0.669131\\
0.404508 -0.700629 -0.587785 -0.587785\\
0.433013 -0.75 -0.5 -0.5\\
0.456773 -0.791154 -0.406737 -0.406737\\
0.475528 -0.823639 -0.309017 -0.309017\\
0.489074 -0.847101 -0.207912 -0.207912\\
0.497261 -0.861281 -0.104528 -0.104528\\
0.5 -0.866025 0 0\\
0.497261 -0.861281 0.104528 0.104528\\
0.489074 -0.847101 0.207912 0.207912\\
0.475528 -0.823639 0.309017 0.309017\\
0.456773 -0.791154 0.406737 0.406737\\
0.433013 -0.75 0.5 0.5\\
0.404508 -0.700629 0.587785 0.587785\\
0.371572 -0.643582 0.669131 0.669131\\
0.334565 -0.579484 0.743145 0.743145\\
0.293893 -0.509037 0.809017 0.809017\\
0.25 -0.433013 0.866025 0.866025\\
0.203368 -0.352244 0.913545 0.913545\\
0.154508 -0.267617 0.951057 0.951057\\
0.103956 -0.180057 0.978148 0.978148\\
0.0522642 -0.0905243 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0699432 -0.0776798 -0.994522 -0.994522\\
0.13912 -0.154508 -0.978148 -0.978148\\
0.206773 -0.229644 -0.951057 -0.951057\\
0.27216 -0.302264 -0.913545 -0.913545\\
0.334565 -0.371572 -0.866025 -0.866025\\
0.393305 -0.43681 -0.809017 -0.809017\\
0.447736 -0.497261 -0.743145 -0.743145\\
0.497261 -0.552264 -0.669131 -0.669131\\
0.541338 -0.601217 -0.587785 -0.587785\\
0.579484 -0.643582 -0.5 -0.5\\
0.611281 -0.678897 -0.406737 -0.406737\\
0.636381 -0.706773 -0.309017 -0.309017\\
0.654508 -0.726905 -0.207912 -0.207912\\
0.665465 -0.739074 -0.104528 -0.104528\\
0.669131 -0.743145 0 0\\
0.665465 -0.739074 0.104528 0.104528\\
0.654508 -0.726905 0.207912 0.207912\\
0.636381 -0.706773 0.309017 0.309017\\
0.611281 -0.678897 0.406737 0.406737\\
0.579484 -0.643582 0.5 0.5\\
0.541338 -0.601217 0.587785 0.587785\\
0.497261 -0.552264 0.669131 0.669131\\
0.447736 -0.497261 0.743145 0.743145\\
0.393305 -0.43681 0.809017 0.809017\\
0.334565 -0.371572 0.866025 0.866025\\
0.27216 -0.302264 0.913545 0.913545\\
0.206773 -0.229644 0.951057 0.951057\\
0.13912 -0.154508 0.978148 0.978148\\
0.0699432 -0.0776798 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0845653 -0.0614403 -0.994522 -0.994522\\
0.168204 -0.122207 -0.978148 -0.978148\\
0.25 -0.181636 -0.951057 -0.951057\\
0.329057 -0.239074 -0.913545 -0.913545\\
0.404508 -0.293893 -0.866025 -0.866025\\
0.475528 -0.345492 -0.809017 -0.809017\\
0.541338 -0.393305 -0.743145 -0.743145\\
0.601217 -0.43681 -0.669131 -0.669131\\
0.654508 -0.475528 -0.587785 -0.587785\\
0.700629 -0.509037 -0.5 -0.5\\
0.739074 -0.536969 -0.406737 -0.406737\\
0.769421 -0.559017 -0.309017 -0.309017\\
0.791338 -0.574941 -0.207912 -0.207912\\
0.804585 -0.584565 -0.104528 -0.104528\\
0.809017 -0.587785 0 0\\
0.804585 -0.584565 0.104528 0.104528\\
0.791338 -0.574941 0.207912 0.207912\\
0.769421 -0.559017 0.309017 0.309017\\
0.739074 -0.536969 0.406737 0.406737\\
0.700629 -0.509037 0.5 0.5\\
0.654508 -0.475528 0.587785 0.587785\\
0.601217 -0.43681 0.669131 0.669131\\
0.541338 -0.393305 0.743145 0.743145\\
0.475528 -0.345492 0.809017 0.809017\\
0.404508 -0.293893 0.866025 0.866025\\
0.329057 -0.239074 0.913545 0.913545\\
0.25 -0.181636 0.951057 0.951057\\
0.168204 -0.122207 0.978148 0.978148\\
0.0845653 -0.0614403 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0954915 -0.0425156 -0.994522 -0.994522\\
0.189937 -0.0845653 -0.978148 -0.978148\\
0.282301 -0.125689 -0.951057 -0.951057\\
0.371572 -0.165435 -0.913545 -0.913545\\
0.456773 -0.203368 -0.866025 -0.866025\\
0.536969 -0.239074 -0.809017 -0.809017\\
0.611281 -0.27216 -0.743145 -0.743145\\
0.678897 -0.302264 -0.669131 -0.669131\\
0.739074 -0.329057 -0.587785 -0.587785\\
0.791154 -0.352244 -0.5 -0.5\\
0.834565 -0.371572 -0.406737 -0.406737\\
0.868833 -0.38683 -0.309017 -0.309017\\
0.893582 -0.397848 -0.207912 -0.207912\\
0.908541 -0.404508 -0.104528 -0.104528\\
0.913545 -0.406737 0 0\\
0.908541 -0.404508 0.104528 0.104528\\
0.893582 -0.397848 0.207912 0.207912\\
0.868833 -0.38683 0.309017 0.309017\\
0.834565 -0.371572 0.406737 0.406737\\
0.791154 -0.352244 0.5 0.5\\
0.739074 -0.329057 0.587785 0.587785\\
0.678897 -0.302264 0.669131 0.669131\\
0.611281 -0.27216 0.743145 0.743145\\
0.536969 -0.239074 0.809017 0.809017\\
0.456773 -0.203368 0.866025 0.866025\\
0.371572 -0.165435 0.913545 0.913545\\
0.282301 -0.125689 0.951057 0.951057\\
0.189937 -0.0845653 0.978148 0.978148\\
0.0954915 -0.0425156 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.102244 -0.0217327 -0.994522 -0.994522\\
0.203368 -0.0432273 -0.978148 -0.978148\\
0.302264 -0.0642482 -0.951057 -0.951057\\
0.397848 -0.0845653 -0.913545 -0.913545\\
0.489074 -0.103956 -0.866025 -0.866025\\
0.574941 -0.122207 -0.809017 -0.809017\\
0.654508 -0.13912 -0.743145 -0.743145\\
0.726905 -0.154508 -0.669131 -0.669131\\
0.791338 -0.168204 -0.587785 -0.587785\\
0.847101 -0.180057 -0.5 -0.5\\
0.893582 -0.189937 -0.406737 -0.406737\\
0.930274 -0.197736 -0.309017 -0.309017\\
0.956773 -0.203368 -0.207912 -0.207912\\
0.972789 -0.206773 -0.104528 -0.104528\\
0.978148 -0.207912 0 0\\
0.972789 -0.206773 0.104528 0.104528\\
0.956773 -0.203368 0.207912 0.207912\\
0.930274 -0.197736 0.309017 0.309017\\
0.893582 -0.189937 0.406737 0.406737\\
0.847101 -0.180057 0.5 0.5\\
0.791338 -0.168204 0.587785 0.587785\\
0.726905 -0.154508 0.669131 0.669131\\
0.654508 -0.13912 0.743145 0.743145\\
0.574941 -0.122207 0.809017 0.809017\\
0.489074 -0.103956 0.866025 0.866025\\
0.397848 -0.0845653 0.913545 0.913545\\
0.302264 -0.0642482 0.951057 0.951057\\
0.203368 -0.0432273 0.978148 0.978148\\
0.102244 -0.0217327 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.104528 0 -0.994522 -0.994522\\
0.207912 0 -0.978148 -0.978148\\
0.309017 0 -0.951057 -0.951057\\
0.406737 0 -0.913545 -0.913545\\
0.5 0 -0.866025 -0.866025\\
0.587785 0 -0.809017 -0.809017\\
0.669131 0 -0.743145 -0.743145\\
0.743145 0 -0.669131 -0.669131\\
0.809017 0 -0.587785 -0.587785\\
0.866025 0 -0.5 -0.5\\
0.913545 0 -0.406737 -0.406737\\
0.951057 0 -0.309017 -0.309017\\
0.978148 0 -0.207912 -0.207912\\
0.994522 0 -0.104528 -0.104528\\
1 0 0 0\\
0.994522 0 0.104528 0.104528\\
0.978148 0 0.207912 0.207912\\
0.951057 0 0.309017 0.309017\\
0.913545 0 0.406737 0.406737\\
0.866025 0 0.5 0.5\\
0.809017 0 0.587785 0.587785\\
0.743145 0 0.669131 0.669131\\
0.669131 0 0.743145 0.743145\\
0.587785 0 0.809017 0.809017\\
0.5 0 0.866025 0.866025\\
0.406737 0 0.913545 0.913545\\
0.309017 0 0.951057 0.951057\\
0.207912 0 0.978148 0.978148\\
0.104528 0 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.102244 0.0217327 -0.994522 -0.994522\\
0.203368 0.0432273 -0.978148 -0.978148\\
0.302264 0.0642482 -0.951057 -0.951057\\
0.397848 0.0845653 -0.913545 -0.913545\\
0.489074 0.103956 -0.866025 -0.866025\\
0.574941 0.122207 -0.809017 -0.809017\\
0.654508 0.13912 -0.743145 -0.743145\\
0.726905 0.154508 -0.669131 -0.669131\\
0.791338 0.168204 -0.587785 -0.587785\\
0.847101 0.180057 -0.5 -0.5\\
0.893582 0.189937 -0.406737 -0.406737\\
0.930274 0.197736 -0.309017 -0.309017\\
0.956773 0.203368 -0.207912 -0.207912\\
0.972789 0.206773 -0.104528 -0.104528\\
0.978148 0.207912 0 0\\
0.972789 0.206773 0.104528 0.104528\\
0.956773 0.203368 0.207912 0.207912\\
0.930274 0.197736 0.309017 0.309017\\
0.893582 0.189937 0.406737 0.406737\\
0.847101 0.180057 0.5 0.5\\
0.791338 0.168204 0.587785 0.587785\\
0.726905 0.154508 0.669131 0.669131\\
0.654508 0.13912 0.743145 0.743145\\
0.574941 0.122207 0.809017 0.809017\\
0.489074 0.103956 0.866025 0.866025\\
0.397848 0.0845653 0.913545 0.913545\\
0.302264 0.0642482 0.951057 0.951057\\
0.203368 0.0432273 0.978148 0.978148\\
0.102244 0.0217327 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0954915 0.0425156 -0.994522 -0.994522\\
0.189937 0.0845653 -0.978148 -0.978148\\
0.282301 0.125689 -0.951057 -0.951057\\
0.371572 0.165435 -0.913545 -0.913545\\
0.456773 0.203368 -0.866025 -0.866025\\
0.536969 0.239074 -0.809017 -0.809017\\
0.611281 0.27216 -0.743145 -0.743145\\
0.678897 0.302264 -0.669131 -0.669131\\
0.739074 0.329057 -0.587785 -0.587785\\
0.791154 0.352244 -0.5 -0.5\\
0.834565 0.371572 -0.406737 -0.406737\\
0.868833 0.38683 -0.309017 -0.309017\\
0.893582 0.397848 -0.207912 -0.207912\\
0.908541 0.404508 -0.104528 -0.104528\\
0.913545 0.406737 0 0\\
0.908541 0.404508 0.104528 0.104528\\
0.893582 0.397848 0.207912 0.207912\\
0.868833 0.38683 0.309017 0.309017\\
0.834565 0.371572 0.406737 0.406737\\
0.791154 0.352244 0.5 0.5\\
0.739074 0.329057 0.587785 0.587785\\
0.678897 0.302264 0.669131 0.669131\\
0.611281 0.27216 0.743145 0.743145\\
0.536969 0.239074 0.809017 0.809017\\
0.456773 0.203368 0.866025 0.866025\\
0.371572 0.165435 0.913545 0.913545\\
0.282301 0.125689 0.951057 0.951057\\
0.189937 0.0845653 0.978148 0.978148\\
0.0954915 0.0425156 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0845653 0.0614403 -0.994522 -0.994522\\
0.168204 0.122207 -0.978148 -0.978148\\
0.25 0.181636 -0.951057 -0.951057\\
0.329057 0.239074 -0.913545 -0.913545\\
0.404508 0.293893 -0.866025 -0.866025\\
0.475528 0.345492 -0.809017 -0.809017\\
0.541338 0.393305 -0.743145 -0.743145\\
0.601217 0.43681 -0.669131 -0.669131\\
0.654508 0.475528 -0.587785 -0.587785\\
0.700629 0.509037 -0.5 -0.5\\
0.739074 0.536969 -0.406737 -0.406737\\
0.769421 0.559017 -0.309017 -0.309017\\
0.791338 0.574941 -0.207912 -0.207912\\
0.804585 0.584565 -0.104528 -0.104528\\
0.809017 0.587785 0 0\\
0.804585 0.584565 0.104528 0.104528\\
0.791338 0.574941 0.207912 0.207912\\
0.769421 0.559017 0.309017 0.309017\\
0.739074 0.536969 0.406737 0.406737\\
0.700629 0.509037 0.5 0.5\\
0.654508 0.475528 0.587785 0.587785\\
0.601217 0.43681 0.669131 0.669131\\
0.541338 0.393305 0.743145 0.743145\\
0.475528 0.345492 0.809017 0.809017\\
0.404508 0.293893 0.866025 0.866025\\
0.329057 0.239074 0.913545 0.913545\\
0.25 0.181636 0.951057 0.951057\\
0.168204 0.122207 0.978148 0.978148\\
0.0845653 0.0614403 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0699432 0.0776798 -0.994522 -0.994522\\
0.13912 0.154508 -0.978148 -0.978148\\
0.206773 0.229644 -0.951057 -0.951057\\
0.27216 0.302264 -0.913545 -0.913545\\
0.334565 0.371572 -0.866025 -0.866025\\
0.393305 0.43681 -0.809017 -0.809017\\
0.447736 0.497261 -0.743145 -0.743145\\
0.497261 0.552264 -0.669131 -0.669131\\
0.541338 0.601217 -0.587785 -0.587785\\
0.579484 0.643582 -0.5 -0.5\\
0.611281 0.678897 -0.406737 -0.406737\\
0.636381 0.706773 -0.309017 -0.309017\\
0.654508 0.726905 -0.207912 -0.207912\\
0.665465 0.739074 -0.104528 -0.104528\\
0.669131 0.743145 0 0\\
0.665465 0.739074 0.104528 0.104528\\
0.654508 0.726905 0.207912 0.207912\\
0.636381 0.706773 0.309017 0.309017\\
0.611281 0.678897 0.406737 0.406737\\
0.579484 0.643582 0.5 0.5\\
0.541338 0.601217 0.587785 0.587785\\
0.497261 0.552264 0.669131 0.669131\\
0.447736 0.497261 0.743145 0.743145\\
0.393305 0.43681 0.809017 0.809017\\
0.334565 0.371572 0.866025 0.866025\\
0.27216 0.302264 0.913545 0.913545\\
0.206773 0.229644 0.951057 0.951057\\
0.13912 0.154508 0.978148 0.978148\\
0.0699432 0.0776798 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0522642 0.0905243 -0.994522 -0.994522\\
0.103956 0.180057 -0.978148 -0.978148\\
0.154508 0.267617 -0.951057 -0.951057\\
0.203368 0.352244 -0.913545 -0.913545\\
0.25 0.433013 -0.866025 -0.866025\\
0.293893 0.509037 -0.809017 -0.809017\\
0.334565 0.579484 -0.743145 -0.743145\\
0.371572 0.643582 -0.669131 -0.669131\\
0.404508 0.700629 -0.587785 -0.587785\\
0.433013 0.75 -0.5 -0.5\\
0.456773 0.791154 -0.406737 -0.406737\\
0.475528 0.823639 -0.309017 -0.309017\\
0.489074 0.847101 -0.207912 -0.207912\\
0.497261 0.861281 -0.104528 -0.104528\\
0.5 0.866025 0 0\\
0.497261 0.861281 0.104528 0.104528\\
0.489074 0.847101 0.207912 0.207912\\
0.475528 0.823639 0.309017 0.309017\\
0.456773 0.791154 0.406737 0.406737\\
0.433013 0.75 0.5 0.5\\
0.404508 0.700629 0.587785 0.587785\\
0.371572 0.643582 0.669131 0.669131\\
0.334565 0.579484 0.743145 0.743145\\
0.293893 0.509037 0.809017 0.809017\\
0.25 0.433013 0.866025 0.866025\\
0.203368 0.352244 0.913545 0.913545\\
0.154508 0.267617 0.951057 0.951057\\
0.103956 0.180057 0.978148 0.978148\\
0.0522642 0.0905243 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0323011 0.0994125 -0.994522 -0.994522\\
0.0642482 0.197736 -0.978148 -0.978148\\
0.0954915 0.293893 -0.951057 -0.951057\\
0.125689 0.38683 -0.913545 -0.913545\\
0.154508 0.475528 -0.866025 -0.866025\\
0.181636 0.559017 -0.809017 -0.809017\\
0.206773 0.636381 -0.743145 -0.743145\\
0.229644 0.706773 -0.669131 -0.669131\\
0.25 0.769421 -0.587785 -0.587785\\
0.267617 0.823639 -0.5 -0.5\\
0.282301 0.868833 -0.406737 -0.406737\\
0.293893 0.904508 -0.309017 -0.309017\\
0.302264 0.930274 -0.207912 -0.207912\\
0.307324 0.945847 -0.104528 -0.104528\\
0.309017 0.951057 0 0\\
0.307324 0.945847 0.104528 0.104528\\
0.302264 0.930274 0.207912 0.207912\\
0.293893 0.904508 0.309017 0.309017\\
0.282301 0.868833 0.406737 0.406737\\
0.267617 0.823639 0.5 0.5\\
0.25 0.769421 0.587785 0.587785\\
0.229644 0.706773 0.669131 0.669131\\
0.206773 0.636381 0.743145 0.743145\\
0.181636 0.559017 0.809017 0.809017\\
0.154508 0.475528 0.866025 0.866025\\
0.125689 0.38683 0.913545 0.913545\\
0.0954915 0.293893 0.951057 0.951057\\
0.0642482 0.197736 0.978148 0.978148\\
0.0323011 0.0994125 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
0.0109262 0.103956 -0.994522 -0.994522\\
0.0217327 0.206773 -0.978148 -0.978148\\
0.0323011 0.307324 -0.951057 -0.951057\\
0.0425156 0.404508 -0.913545 -0.913545\\
0.0522642 0.497261 -0.866025 -0.866025\\
0.0614403 0.584565 -0.809017 -0.809017\\
0.0699432 0.665465 -0.743145 -0.743145\\
0.0776798 0.739074 -0.669131 -0.669131\\
0.0845653 0.804585 -0.587785 -0.587785\\
0.0905243 0.861281 -0.5 -0.5\\
0.0954915 0.908541 -0.406737 -0.406737\\
0.0994125 0.945847 -0.309017 -0.309017\\
0.102244 0.972789 -0.207912 -0.207912\\
0.103956 0.989074 -0.104528 -0.104528\\
0.104528 0.994522 0 0\\
0.103956 0.989074 0.104528 0.104528\\
0.102244 0.972789 0.207912 0.207912\\
0.0994125 0.945847 0.309017 0.309017\\
0.0954915 0.908541 0.406737 0.406737\\
0.0905243 0.861281 0.5 0.5\\
0.0845653 0.804585 0.587785 0.587785\\
0.0776798 0.739074 0.669131 0.669131\\
0.0699432 0.665465 0.743145 0.743145\\
0.0614403 0.584565 0.809017 0.809017\\
0.0522642 0.497261 0.866025 0.866025\\
0.0425156 0.404508 0.913545 0.913545\\
0.0323011 0.307324 0.951057 0.951057\\
0.0217327 0.206773 0.978148 0.978148\\
0.0109262 0.103956 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0109262 0.103956 -0.994522 -0.994522\\
-0.0217327 0.206773 -0.978148 -0.978148\\
-0.0323011 0.307324 -0.951057 -0.951057\\
-0.0425156 0.404508 -0.913545 -0.913545\\
-0.0522642 0.497261 -0.866025 -0.866025\\
-0.0614403 0.584565 -0.809017 -0.809017\\
-0.0699432 0.665465 -0.743145 -0.743145\\
-0.0776798 0.739074 -0.669131 -0.669131\\
-0.0845653 0.804585 -0.587785 -0.587785\\
-0.0905243 0.861281 -0.5 -0.5\\
-0.0954915 0.908541 -0.406737 -0.406737\\
-0.0994125 0.945847 -0.309017 -0.309017\\
-0.102244 0.972789 -0.207912 -0.207912\\
-0.103956 0.989074 -0.104528 -0.104528\\
-0.104528 0.994522 0 0\\
-0.103956 0.989074 0.104528 0.104528\\
-0.102244 0.972789 0.207912 0.207912\\
-0.0994125 0.945847 0.309017 0.309017\\
-0.0954915 0.908541 0.406737 0.406737\\
-0.0905243 0.861281 0.5 0.5\\
-0.0845653 0.804585 0.587785 0.587785\\
-0.0776798 0.739074 0.669131 0.669131\\
-0.0699432 0.665465 0.743145 0.743145\\
-0.0614403 0.584565 0.809017 0.809017\\
-0.0522642 0.497261 0.866025 0.866025\\
-0.0425156 0.404508 0.913545 0.913545\\
-0.0323011 0.307324 0.951057 0.951057\\
-0.0217327 0.206773 0.978148 0.978148\\
-0.0109262 0.103956 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0323011 0.0994125 -0.994522 -0.994522\\
-0.0642482 0.197736 -0.978148 -0.978148\\
-0.0954915 0.293893 -0.951057 -0.951057\\
-0.125689 0.38683 -0.913545 -0.913545\\
-0.154508 0.475528 -0.866025 -0.866025\\
-0.181636 0.559017 -0.809017 -0.809017\\
-0.206773 0.636381 -0.743145 -0.743145\\
-0.229644 0.706773 -0.669131 -0.669131\\
-0.25 0.769421 -0.587785 -0.587785\\
-0.267617 0.823639 -0.5 -0.5\\
-0.282301 0.868833 -0.406737 -0.406737\\
-0.293893 0.904508 -0.309017 -0.309017\\
-0.302264 0.930274 -0.207912 -0.207912\\
-0.307324 0.945847 -0.104528 -0.104528\\
-0.309017 0.951057 0 0\\
-0.307324 0.945847 0.104528 0.104528\\
-0.302264 0.930274 0.207912 0.207912\\
-0.293893 0.904508 0.309017 0.309017\\
-0.282301 0.868833 0.406737 0.406737\\
-0.267617 0.823639 0.5 0.5\\
-0.25 0.769421 0.587785 0.587785\\
-0.229644 0.706773 0.669131 0.669131\\
-0.206773 0.636381 0.743145 0.743145\\
-0.181636 0.559017 0.809017 0.809017\\
-0.154508 0.475528 0.866025 0.866025\\
-0.125689 0.38683 0.913545 0.913545\\
-0.0954915 0.293893 0.951057 0.951057\\
-0.0642482 0.197736 0.978148 0.978148\\
-0.0323011 0.0994125 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0522642 0.0905243 -0.994522 -0.994522\\
-0.103956 0.180057 -0.978148 -0.978148\\
-0.154508 0.267617 -0.951057 -0.951057\\
-0.203368 0.352244 -0.913545 -0.913545\\
-0.25 0.433013 -0.866025 -0.866025\\
-0.293893 0.509037 -0.809017 -0.809017\\
-0.334565 0.579484 -0.743145 -0.743145\\
-0.371572 0.643582 -0.669131 -0.669131\\
-0.404508 0.700629 -0.587785 -0.587785\\
-0.433013 0.75 -0.5 -0.5\\
-0.456773 0.791154 -0.406737 -0.406737\\
-0.475528 0.823639 -0.309017 -0.309017\\
-0.489074 0.847101 -0.207912 -0.207912\\
-0.497261 0.861281 -0.104528 -0.104528\\
-0.5 0.866025 0 0\\
-0.497261 0.861281 0.104528 0.104528\\
-0.489074 0.847101 0.207912 0.207912\\
-0.475528 0.823639 0.309017 0.309017\\
-0.456773 0.791154 0.406737 0.406737\\
-0.433013 0.75 0.5 0.5\\
-0.404508 0.700629 0.587785 0.587785\\
-0.371572 0.643582 0.669131 0.669131\\
-0.334565 0.579484 0.743145 0.743145\\
-0.293893 0.509037 0.809017 0.809017\\
-0.25 0.433013 0.866025 0.866025\\
-0.203368 0.352244 0.913545 0.913545\\
-0.154508 0.267617 0.951057 0.951057\\
-0.103956 0.180057 0.978148 0.978148\\
-0.0522642 0.0905243 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0699432 0.0776798 -0.994522 -0.994522\\
-0.13912 0.154508 -0.978148 -0.978148\\
-0.206773 0.229644 -0.951057 -0.951057\\
-0.27216 0.302264 -0.913545 -0.913545\\
-0.334565 0.371572 -0.866025 -0.866025\\
-0.393305 0.43681 -0.809017 -0.809017\\
-0.447736 0.497261 -0.743145 -0.743145\\
-0.497261 0.552264 -0.669131 -0.669131\\
-0.541338 0.601217 -0.587785 -0.587785\\
-0.579484 0.643582 -0.5 -0.5\\
-0.611281 0.678897 -0.406737 -0.406737\\
-0.636381 0.706773 -0.309017 -0.309017\\
-0.654508 0.726905 -0.207912 -0.207912\\
-0.665465 0.739074 -0.104528 -0.104528\\
-0.669131 0.743145 0 0\\
-0.665465 0.739074 0.104528 0.104528\\
-0.654508 0.726905 0.207912 0.207912\\
-0.636381 0.706773 0.309017 0.309017\\
-0.611281 0.678897 0.406737 0.406737\\
-0.579484 0.643582 0.5 0.5\\
-0.541338 0.601217 0.587785 0.587785\\
-0.497261 0.552264 0.669131 0.669131\\
-0.447736 0.497261 0.743145 0.743145\\
-0.393305 0.43681 0.809017 0.809017\\
-0.334565 0.371572 0.866025 0.866025\\
-0.27216 0.302264 0.913545 0.913545\\
-0.206773 0.229644 0.951057 0.951057\\
-0.13912 0.154508 0.978148 0.978148\\
-0.0699432 0.0776798 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0845653 0.0614403 -0.994522 -0.994522\\
-0.168204 0.122207 -0.978148 -0.978148\\
-0.25 0.181636 -0.951057 -0.951057\\
-0.329057 0.239074 -0.913545 -0.913545\\
-0.404508 0.293893 -0.866025 -0.866025\\
-0.475528 0.345492 -0.809017 -0.809017\\
-0.541338 0.393305 -0.743145 -0.743145\\
-0.601217 0.43681 -0.669131 -0.669131\\
-0.654508 0.475528 -0.587785 -0.587785\\
-0.700629 0.509037 -0.5 -0.5\\
-0.739074 0.536969 -0.406737 -0.406737\\
-0.769421 0.559017 -0.309017 -0.309017\\
-0.791338 0.574941 -0.207912 -0.207912\\
-0.804585 0.584565 -0.104528 -0.104528\\
-0.809017 0.587785 0 0\\
-0.804585 0.584565 0.104528 0.104528\\
-0.791338 0.574941 0.207912 0.207912\\
-0.769421 0.559017 0.309017 0.309017\\
-0.739074 0.536969 0.406737 0.406737\\
-0.700629 0.509037 0.5 0.5\\
-0.654508 0.475528 0.587785 0.587785\\
-0.601217 0.43681 0.669131 0.669131\\
-0.541338 0.393305 0.743145 0.743145\\
-0.475528 0.345492 0.809017 0.809017\\
-0.404508 0.293893 0.866025 0.866025\\
-0.329057 0.239074 0.913545 0.913545\\
-0.25 0.181636 0.951057 0.951057\\
-0.168204 0.122207 0.978148 0.978148\\
-0.0845653 0.0614403 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.0954915 0.0425156 -0.994522 -0.994522\\
-0.189937 0.0845653 -0.978148 -0.978148\\
-0.282301 0.125689 -0.951057 -0.951057\\
-0.371572 0.165435 -0.913545 -0.913545\\
-0.456773 0.203368 -0.866025 -0.866025\\
-0.536969 0.239074 -0.809017 -0.809017\\
-0.611281 0.27216 -0.743145 -0.743145\\
-0.678897 0.302264 -0.669131 -0.669131\\
-0.739074 0.329057 -0.587785 -0.587785\\
-0.791154 0.352244 -0.5 -0.5\\
-0.834565 0.371572 -0.406737 -0.406737\\
-0.868833 0.38683 -0.309017 -0.309017\\
-0.893582 0.397848 -0.207912 -0.207912\\
-0.908541 0.404508 -0.104528 -0.104528\\
-0.913545 0.406737 0 0\\
-0.908541 0.404508 0.104528 0.104528\\
-0.893582 0.397848 0.207912 0.207912\\
-0.868833 0.38683 0.309017 0.309017\\
-0.834565 0.371572 0.406737 0.406737\\
-0.791154 0.352244 0.5 0.5\\
-0.739074 0.329057 0.587785 0.587785\\
-0.678897 0.302264 0.669131 0.669131\\
-0.611281 0.27216 0.743145 0.743145\\
-0.536969 0.239074 0.809017 0.809017\\
-0.456773 0.203368 0.866025 0.866025\\
-0.371572 0.165435 0.913545 0.913545\\
-0.282301 0.125689 0.951057 0.951057\\
-0.189937 0.0845653 0.978148 0.978148\\
-0.0954915 0.0425156 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.102244 0.0217327 -0.994522 -0.994522\\
-0.203368 0.0432273 -0.978148 -0.978148\\
-0.302264 0.0642482 -0.951057 -0.951057\\
-0.397848 0.0845653 -0.913545 -0.913545\\
-0.489074 0.103956 -0.866025 -0.866025\\
-0.574941 0.122207 -0.809017 -0.809017\\
-0.654508 0.13912 -0.743145 -0.743145\\
-0.726905 0.154508 -0.669131 -0.669131\\
-0.791338 0.168204 -0.587785 -0.587785\\
-0.847101 0.180057 -0.5 -0.5\\
-0.893582 0.189937 -0.406737 -0.406737\\
-0.930274 0.197736 -0.309017 -0.309017\\
-0.956773 0.203368 -0.207912 -0.207912\\
-0.972789 0.206773 -0.104528 -0.104528\\
-0.978148 0.207912 0 0\\
-0.972789 0.206773 0.104528 0.104528\\
-0.956773 0.203368 0.207912 0.207912\\
-0.930274 0.197736 0.309017 0.309017\\
-0.893582 0.189937 0.406737 0.406737\\
-0.847101 0.180057 0.5 0.5\\
-0.791338 0.168204 0.587785 0.587785\\
-0.726905 0.154508 0.669131 0.669131\\
-0.654508 0.13912 0.743145 0.743145\\
-0.574941 0.122207 0.809017 0.809017\\
-0.489074 0.103956 0.866025 0.866025\\
-0.397848 0.0845653 0.913545 0.913545\\
-0.302264 0.0642482 0.951057 0.951057\\
-0.203368 0.0432273 0.978148 0.978148\\
-0.102244 0.0217327 0.994522 0.994522\\
0 0 1 1\\
0 0 -1 -1\\
-0.104528 0 -0.994522 -0.994522\\
-0.207912 0 -0.978148 -0.978148\\
-0.309017 0 -0.951057 -0.951057\\
-0.406737 0 -0.913545 -0.913545\\
-0.5 0 -0.866025 -0.866025\\
-0.587785 0 -0.809017 -0.809017\\
-0.669131 0 -0.743145 -0.743145\\
-0.743145 0 -0.669131 -0.669131\\
-0.809017 0 -0.587785 -0.587785\\
-0.866025 0 -0.5 -0.5\\
-0.913545 0 -0.406737 -0.406737\\
-0.951057 0 -0.309017 -0.309017\\
-0.978148 0 -0.207912 -0.207912\\
-0.994522 0 -0.104528 -0.104528\\
-1 0 0 0\\
-0.994522 0 0.104528 0.104528\\
-0.978148 0 0.207912 0.207912\\
-0.951057 0 0.309017 0.309017\\
-0.913545 0 0.406737 0.406737\\
-0.866025 0 0.5 0.5\\
-0.809017 0 0.587785 0.587785\\
-0.743145 0 0.669131 0.669131\\
-0.669131 0 0.743145 0.743145\\
-0.587785 0 0.809017 0.809017\\
-0.5 0 0.866025 0.866025\\
-0.406737 0 0.913545 0.913545\\
-0.309017 0 0.951057 0.951057\\
-0.207912 0 0.978148 0.978148\\
-0.104528 0 0.994522 0.994522\\
0 0 1 1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.792\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min=-6.43,
point meta max=8.02081,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -3,
xmax= 3,
tick align=outside,
xlabel={x},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -3,
ymax= 3,
ylabel={y},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -10,
zmax= 5,
zlabel={z},
zmajorgrids,
view={-37.5}{ 36},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left,
colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},
colorbar,
colorbar style={ylabel={Magnitude},title={k(u,v)}}
]
\addplot3[%
surf,
shader=flat corner,draw=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},mesh/rows=30]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
-3 -3 6.67128e-05 6.67128e-05\\
-3 -2.7931 0.000136151 0.000136151\\
-3 -2.58621 0.000252543 0.000252543\\
-3 -2.37931 0.000421863 0.000421863\\
-3 -2.17241 0.000620633 0.000620633\\
-3 -1.96552 0.000759417 0.000759417\\
-3 -1.75862 0.000634168 0.000634168\\
-3 -1.55172 -0.000112254 -0.000112254\\
-3 -1.34483 -0.00197025 -0.00197025\\
-3 -1.13793 -0.00543002 -0.00543002\\
-3 -0.931034 -0.0107261 -0.0107261\\
-3 -0.724138 -0.0175547 -0.0175547\\
-3 -0.517241 -0.0249472 -0.0249472\\
-3 -0.310345 -0.0314549 -0.0314549\\
-3 -0.103448 -0.0356221 -0.0356221\\
-3 0.103448 -0.0365205 -0.0365205\\
-3 0.310345 -0.0340661 -0.0340661\\
-3 0.517241 -0.0289768 -0.0289768\\
-3 0.724138 -0.0224503 -0.0224503\\
-3 0.931034 -0.0157537 -0.0157537\\
-3 1.13793 -0.00989072 -0.00989072\\
-3 1.34483 -0.00542621 -0.00542621\\
-3 1.55172 -0.00247389 -0.00247389\\
-3 1.75862 -0.000810505 -0.000810505\\
-3 1.96552 -5.12497e-05 -5.12497e-05\\
-3 2.17241 0.000187825 0.000187825\\
-3 2.37931 0.000192843 0.000192843\\
-3 2.58621 0.000129633 0.000129633\\
-3 2.7931 7.00109e-05 7.00109e-05\\
-3 3 3.22354e-05 3.22354e-05\\
-2.7931 -3 0.000188386 0.000188386\\
-2.7931 -2.7931 0.000383396 0.000383396\\
-2.7931 -2.58621 0.000712281 0.000712281\\
-2.7931 -2.37931 0.00120079 0.00120079\\
-2.7931 -2.17241 0.00180685 0.00180685\\
-2.7931 -1.96552 0.00232673 0.00232673\\
-2.7931 -1.75862 0.00226024 0.00226024\\
-2.7931 -1.55172 0.000688868 0.000688868\\
-2.7931 -1.34483 -0.00369952 -0.00369952\\
-2.7931 -1.13793 -0.0122729 -0.0122729\\
-2.7931 -0.931034 -0.0257606 -0.0257606\\
-2.7931 -0.724138 -0.0434574 -0.0434574\\
-2.7931 -0.517241 -0.0628456 -0.0628456\\
-2.7931 -0.310345 -0.0800811 -0.0800811\\
-2.7931 -0.103448 -0.0912792 -0.0912792\\
-2.7931 0.103448 -0.0939578 -0.0939578\\
-2.7931 0.310345 -0.0878636 -0.0878636\\
-2.7931 0.517241 -0.0748355 -0.0748355\\
-2.7931 0.724138 -0.0579554 -0.0579554\\
-2.7931 0.931034 -0.0405068 -0.0405068\\
-2.7931 1.13793 -0.0251405 -0.0251405\\
-2.7931 1.34483 -0.0134082 -0.0134082\\
-2.7931 1.55172 -0.0056841 -0.0056841\\
-2.7931 1.75862 -0.0014173 -0.0014173\\
-2.7931 1.96552 0.000417891 0.000417891\\
-2.7931 2.17241 0.000872457 0.000872457\\
-2.7931 2.37931 0.000736749 0.000736749\\
-2.7931 2.58621 0.000464649 0.000464649\\
-2.7931 2.7931 0.00024357 0.00024357\\
-2.7931 3 0.000110329 0.000110329\\
-2.58621 -3 0.000477409 0.000477409\\
-2.58621 -2.7931 0.000966167 0.000966167\\
-2.58621 -2.58621 0.00179322 0.00179322\\
-2.58621 -2.37931 0.00304432 0.00304432\\
-2.58621 -2.17241 0.00467374 0.00467374\\
-2.58621 -1.96552 0.0062895 0.0062895\\
-2.58621 -1.75862 0.00681228 0.00681228\\
-2.58621 -1.55172 0.00412076 0.00412076\\
-2.58621 -1.34483 -0.00497761 -0.00497761\\
-2.58621 -1.13793 -0.0239838 -0.0239838\\
-2.58621 -0.931034 -0.0549809 -0.0549809\\
-2.58621 -0.724138 -0.0965658 -0.0965658\\
-2.58621 -0.517241 -0.142804 -0.142804\\
-2.58621 -0.310345 -0.184391 -0.184391\\
-2.58621 -0.103448 -0.21186 -0.21186\\
-2.58621 0.103448 -0.219147 -0.219147\\
-2.58621 0.310345 -0.205556 -0.205556\\
-2.58621 0.517241 -0.175346 -0.175346\\
-2.58621 0.724138 -0.135695 -0.135695\\
-2.58621 0.931034 -0.0943196 -0.0943196\\
-2.58621 1.13793 -0.0576077 -0.0576077\\
-2.58621 1.34483 -0.0294841 -0.0294841\\
-2.58621 1.55172 -0.0110764 -0.0110764\\
-2.58621 1.75862 -0.00117495 -0.00117495\\
-2.58621 1.96552 0.00272461 0.00272461\\
-2.58621 2.17241 0.00327249 0.00327249\\
-2.58621 2.37931 0.00248293 0.00248293\\
-2.58621 2.58621 0.00150027 0.00150027\\
-2.58621 2.7931 0.000769592 0.000769592\\
-2.58621 3 0.000344311 0.000344311\\
-2.37931 -3 0.00107766 0.00107766\\
-2.37931 -2.7931 0.00215967 0.00215967\\
-2.37931 -2.58621 0.00399054 0.00399054\\
-2.37931 -2.37931 0.00680782 0.00680782\\
-2.37931 -2.17241 0.010655 0.010655\\
-2.37931 -1.96552 0.0149514 0.0149514\\
-2.37931 -1.75862 0.0177067 0.0177067\\
-2.37931 -1.55172 0.0145704 0.0145704\\
-2.37931 -1.34483 -0.0014926 -0.0014926\\
-2.37931 -1.13793 -0.0386915 -0.0386915\\
-2.37931 -0.931034 -0.102489 -0.102489\\
-2.37931 -0.724138 -0.190646 -0.190646\\
-2.37931 -0.517241 -0.290543 -0.290543\\
-2.37931 -0.310345 -0.381688 -0.381688\\
-2.37931 -0.103448 -0.443048 -0.443048\\
-2.37931 0.103448 -0.461124 -0.461124\\
-2.37931 0.310345 -0.434169 -0.434169\\
-2.37931 0.517241 -0.371048 -0.371048\\
-2.37931 0.724138 -0.286791 -0.286791\\
-2.37931 0.931034 -0.19778 -0.19778\\
-2.37931 1.13793 -0.118025 -0.118025\\
-2.37931 1.34483 -0.0566632 -0.0566632\\
-2.37931 1.55172 -0.0168147 -0.0168147\\
-2.37931 1.75862 0.00384432 0.00384432\\
-2.37931 1.96552 0.0109108 0.0109108\\
-2.37931 2.17241 0.010544 0.010544\\
-2.37931 2.37931 0.00748319 0.00748319\\
-2.37931 2.58621 0.00438697 0.00438697\\
-2.37931 2.7931 0.00221429 0.00221429\\
-2.37931 3 0.000981285 0.000981285\\
-2.17241 -3 0.00213944 0.00213944\\
-2.17241 -2.7931 0.00421553 0.00421553\\
-2.17241 -2.58621 0.00770966 0.00770966\\
-2.17241 -2.37931 0.0131817 0.0131817\\
-2.17241 -2.17241 0.0210604 0.0210604\\
-2.17241 -1.96552 0.0309172 0.0309172\\
-2.17241 -1.75862 0.039821 0.039821\\
-2.17241 -1.55172 0.0399972 0.0399972\\
-2.17241 -1.34483 0.0174747 0.0174747\\
-2.17241 -1.13793 -0.0453735 -0.0453735\\
-2.17241 -0.931034 -0.161702 -0.161702\\
-2.17241 -0.724138 -0.329247 -0.329247\\
-2.17241 -0.517241 -0.523945 -0.523945\\
-2.17241 -0.310345 -0.704826 -0.704826\\
-2.17241 -0.103448 -0.829367 -0.829367\\
-2.17241 0.103448 -0.870219 -0.870219\\
-2.17241 0.310345 -0.823379 -0.823379\\
-2.17241 0.517241 -0.705287 -0.705287\\
-2.17241 0.724138 -0.54404 -0.54404\\
-2.17241 0.931034 -0.370837 -0.370837\\
-2.17241 1.13793 -0.2136 -0.2136\\
-2.17241 1.34483 -0.091945 -0.091945\\
-2.17241 1.55172 -0.013785 -0.013785\\
-2.17241 1.75862 0.0246568 0.0246568\\
-2.17241 1.96552 0.0348312 0.0348312\\
-2.17241 2.17241 0.0299506 0.0299506\\
-2.17241 2.37931 0.0203255 0.0203255\\
-2.17241 2.58621 0.0116565 0.0116565\\
-2.17241 2.7931 0.00581195 0.00581195\\
-2.17241 3 0.00255673 0.00255673\\
-1.96552 -3 0.00364711 0.00364711\\
-1.96552 -2.7931 0.00696405 0.00696405\\
-1.96552 -2.58621 0.0124545 0.0124545\\
-1.96552 -2.37931 0.02124 0.02124\\
-1.96552 -2.17241 0.0348436 0.0348436\\
-1.96552 -1.96552 0.0542405 0.0542405\\
-1.96552 -1.75862 0.0767409 0.0767409\\
-1.96552 -1.55172 0.0906803 0.0906803\\
-1.96552 -1.34483 0.0712182 0.0712182\\
-1.96552 -1.13793 -0.0162974 -0.0162974\\
-1.96552 -0.931034 -0.200967 -0.200967\\
-1.96552 -0.724138 -0.483989 -0.483989\\
-1.96552 -0.517241 -0.824599 -0.824599\\
-1.96552 -0.310345 -1.14857 -1.14857\\
-1.96552 -0.103448 -1.37775 -1.37775\\
-1.96552 0.103448 -1.46178 -1.46178\\
-1.96552 0.310345 -1.39229 -1.39229\\
-1.96552 0.517241 -1.19612 -1.19612\\
-1.96552 0.724138 -0.919569 -0.919569\\
-1.96552 0.931034 -0.615573 -0.615573\\
-1.96552 1.13793 -0.334638 -0.334638\\
-1.96552 1.34483 -0.115652 -0.115652\\
-1.96552 1.55172 0.0229643 0.0229643\\
-1.96552 1.75862 0.0859995 0.0859995\\
-1.96552 1.96552 0.0949373 0.0949373\\
-1.96552 2.17241 0.0760048 0.0760048\\
-1.96552 2.37931 0.049992 0.049992\\
-1.96552 2.58621 0.0282078 0.0282078\\
-1.96552 2.7931 0.0139338 0.0139338\\
-1.96552 3 0.00609472 0.00609472\\
-1.75862 -3 0.00505826 0.00505826\\
-1.75862 -2.7931 0.00900755 0.00900755\\
-1.75862 -2.58621 0.015203 0.015203\\
-1.75862 -2.37931 0.025513 0.025513\\
-1.75862 -2.17241 0.0439216 0.0439216\\
-1.75862 -1.96552 0.0758896 0.0758896\\
-1.75862 -1.75862 0.123021 0.123021\\
-1.75862 -1.55172 0.171986 0.171986\\
-1.75862 -1.34483 0.183632 0.183632\\
-1.75862 -1.13793 0.0955643 0.0955643\\
-1.75862 -0.931034 -0.151368 -0.151368\\
-1.75862 -0.724138 -0.570832 -0.570832\\
-1.75862 -0.517241 -1.10229 -1.10229\\
-1.75862 -0.310345 -1.62408 -1.62408\\
-1.75862 -0.103448 -2.00564 -2.00564\\
-1.75862 0.103448 -2.16276 -2.16276\\
-1.75862 0.310345 -2.07949 -2.07949\\
-1.75862 0.517241 -1.79352 -1.79352\\
-1.75862 0.724138 -1.37091 -1.37091\\
-1.75862 0.931034 -0.890695 -0.890695\\
-1.75862 1.13793 -0.435815 -0.435815\\
-1.75862 1.34483 -0.0776832 -0.0776832\\
-1.75862 1.55172 0.144332 0.144332\\
-1.75862 1.75862 0.233622 0.233622\\
-1.75862 1.96552 0.227275 0.227275\\
-1.75862 2.17241 0.17364 0.17364\\
-1.75862 2.37931 0.111694 0.111694\\
-1.75862 2.58621 0.0622665 0.0622665\\
-1.75862 2.7931 0.0305407 0.0305407\\
-1.75862 3 0.0133001 0.0133001\\
-1.55172 -3 0.0047997 0.0047997\\
-1.55172 -2.7931 0.00661998 0.00661998\\
-1.55172 -2.58621 0.00821014 0.00821014\\
-1.55172 -2.37931 0.0119841 0.0119841\\
-1.55172 -2.17241 0.0265399 0.0265399\\
-1.55172 -1.96552 0.0677843 0.0677843\\
-1.55172 -1.75862 0.150734 0.150734\\
-1.55172 -1.55172 0.26826 0.26826\\
-1.55172 -1.34483 0.366546 0.366546\\
-1.55172 -1.13793 0.342596 0.342596\\
-1.55172 -0.931034 0.0858911 0.0858911\\
-1.55172 -0.724138 -0.447532 -0.447532\\
-1.55172 -0.517241 -1.18076 -1.18076\\
-1.55172 -0.310345 -1.93343 -1.93343\\
-1.55172 -0.103448 -2.50708 -2.50708\\
-1.55172 0.103448 -2.77375 -2.77375\\
-1.55172 0.310345 -2.70567 -2.70567\\
-1.55172 0.517241 -2.34654 -2.34654\\
-1.55172 0.724138 -1.77478 -1.77478\\
-1.55172 0.931034 -1.09248 -1.09248\\
-1.55172 1.13793 -0.423418 -0.423418\\
-1.55172 1.34483 0.11041 0.11041\\
-1.55172 1.55172 0.431784 0.431784\\
-1.55172 1.75862 0.536828 0.536828\\
-1.55172 1.96552 0.484818 0.484818\\
-1.55172 2.17241 0.358878 0.358878\\
-1.55172 2.37931 0.22719 0.22719\\
-1.55172 2.58621 0.125528 0.125528\\
-1.55172 2.7931 0.0612429 0.0612429\\
-1.55172 3 0.0265817 0.0265817\\
-1.34483 -3 -0.000109527 -0.000109527\\
-1.34483 -2.7931 -0.00703439 -0.00703439\\
-1.34483 -2.58621 -0.0225205 -0.0225205\\
-1.34483 -2.37931 -0.0447668 -0.0447668\\
-1.34483 -2.17241 -0.0578567 -0.0578567\\
-1.34483 -1.96552 -0.026024 -0.026024\\
-1.34483 -1.75862 0.0951086 0.0951086\\
-1.34483 -1.55172 0.320998 0.320998\\
-1.34483 -1.34483 0.589184 0.589184\\
-1.34483 -1.13793 0.743538 0.743538\\
-1.34483 -0.931034 0.594183 0.594183\\
-1.34483 -0.724138 0.0382986 0.0382986\\
-1.34483 -0.517241 -0.844708 -0.844708\\
-1.34483 -0.310345 -1.81277 -1.81277\\
-1.34483 -0.103448 -2.59036 -2.59036\\
-1.34483 0.103448 -3.00036 -3.00036\\
-1.34483 0.310345 -2.99877 -2.99877\\
-1.34483 0.517241 -2.62267 -2.62267\\
-1.34483 0.724138 -1.94227 -1.94227\\
-1.34483 0.931034 -1.06764 -1.06764\\
-1.34483 1.13793 -0.167677 -0.167677\\
-1.34483 1.34483 0.563028 0.563028\\
-1.34483 1.55172 0.985386 0.985386\\
-1.34483 1.75862 1.07801 1.07801\\
-1.34483 1.96552 0.929333 0.929333\\
-1.34483 2.17241 0.673245 0.673245\\
-1.34483 2.37931 0.421393 0.421393\\
-1.34483 2.58621 0.231328 0.231328\\
-1.34483 2.7931 0.112421 0.112421\\
-1.34483 3 0.0486745 0.0486745\\
-1.13793 -3 -0.0138121 -0.0138121\\
-1.13793 -2.7931 -0.0412596 -0.0412596\\
-1.13793 -2.58621 -0.0958708 -0.0958708\\
-1.13793 -2.37931 -0.179214 -0.179214\\
-1.13793 -2.17241 -0.265587 -0.265587\\
-1.13793 -1.96552 -0.287262 -0.287262\\
-1.13793 -1.75862 -0.148067 -0.148067\\
-1.13793 -1.55172 0.21563 0.21563\\
-1.13793 -1.34483 0.747342 0.747342\\
-1.13793 -1.13793 1.2292 1.2292\\
-1.13793 -0.931034 1.36112 1.36112\\
-1.13793 -0.724138 0.944316 0.944316\\
-1.13793 -0.517241 0.0356609 0.0356609\\
-1.13793 -0.310345 -1.06925 -1.06925\\
-1.13793 -0.103448 -2.01882 -2.01882\\
-1.13793 0.103448 -2.5885 -2.5885\\
-1.13793 0.310345 -2.71476 -2.71476\\
-1.13793 0.517241 -2.4086 -2.4086\\
-1.13793 0.724138 -1.69872 -1.69872\\
-1.13793 0.931034 -0.676222 -0.676222\\
-1.13793 1.13793 0.446108 0.446108\\
-1.13793 1.34483 1.37724 1.37724\\
-1.13793 1.55172 1.88713 1.88713\\
-1.13793 1.75862 1.92306 1.92306\\
-1.13793 1.96552 1.60948 1.60948\\
-1.13793 2.17241 1.14916 1.14916\\
-1.13793 2.37931 0.713641 0.713641\\
-1.13793 2.58621 0.389983 0.389983\\
-1.13793 2.7931 0.188999 0.188999\\
-1.13793 3 0.0816862 0.0816862\\
-0.931034 -3 -0.0402876 -0.0402876\\
-0.931034 -2.7931 -0.104773 -0.104773\\
-0.931034 -2.58621 -0.229352 -0.229352\\
-0.931034 -2.37931 -0.423598 -0.423598\\
-0.931034 -2.17241 -0.65103 -0.65103\\
-0.931034 -1.96552 -0.799873 -0.799873\\
-0.931034 -1.75862 -0.697236 -0.697236\\
-0.931034 -1.55172 -0.200291 -0.200291\\
-0.931034 -1.34483 0.662593 0.662593\\
-0.931034 -1.13793 1.6107 1.6107\\
-0.931034 -0.931034 2.2075 2.2075\\
-0.931034 -0.724138 2.12084 2.12084\\
-0.931034 -0.517241 1.35444 1.35444\\
-0.931034 -0.310345 0.240049 0.240049\\
-0.931034 -0.103448 -0.80524 -0.80524\\
-0.931034 0.103448 -1.51829 -1.51829\\
-0.931034 0.310345 -1.81557 -1.81557\\
-0.931034 0.517241 -1.66116 -1.66116\\
-0.931034 0.724138 -1.00495 -1.00495\\
-0.931034 0.931034 0.112565 0.112565\\
-0.931034 1.13793 1.43968 1.43968\\
-0.931034 1.34483 2.56714 2.56714\\
-0.931034 1.55172 3.14557 3.14557\\
-0.931034 1.75862 3.07692 3.07692\\
-0.931034 1.96552 2.52797 2.52797\\
-0.931034 2.17241 1.78803 1.78803\\
-0.931034 2.37931 1.10464 1.10464\\
-0.931034 2.58621 0.601823 0.601823\\
-0.931034 2.7931 0.291121 0.291121\\
-0.931034 3 0.125675 0.125675\\
-0.724138 -3 -0.0810357 -0.0810357\\
-0.724138 -2.7931 -0.200475 -0.200475\\
-0.724138 -2.58621 -0.428454 -0.428454\\
-0.724138 -2.37931 -0.788453 -0.788453\\
-0.724138 -2.17241 -1.23481 -1.23481\\
-0.724138 -1.96552 -1.60391 -1.60391\\
-0.724138 -1.75862 -1.62642 -1.62642\\
-0.724138 -1.55172 -1.0527 -1.0527\\
-0.724138 -1.34483 0.141183 0.141183\\
-0.724138 -1.13793 1.62005 1.62005\\
-0.724138 -0.931034 2.79917 2.79917\\
-0.724138 -0.724138 3.18844 3.18844\\
-0.724138 -0.517241 2.71325 2.71325\\
-0.724138 -0.310345 1.72199 1.72199\\
-0.724138 -0.103448 0.681613 0.681613\\
-0.724138 0.103448 -0.118942 -0.118942\\
-0.724138 0.310345 -0.579706 -0.579706\\
-0.724138 0.517241 -0.604528 -0.604528\\
-0.724138 0.724138 -0.0381019 -0.0381019\\
-0.724138 0.931034 1.15296 1.15296\\
-0.724138 1.13793 2.68289 2.68289\\
-0.724138 1.34483 4.0104 4.0104\\
-0.724138 1.55172 4.64808 4.64808\\
-0.724138 1.75862 4.4437 4.4437\\
-0.724138 1.96552 3.61147 3.61147\\
-0.724138 2.17241 2.53999 2.53999\\
-0.724138 2.37931 1.56426 1.56426\\
-0.724138 2.58621 0.850642 0.850642\\
-0.724138 2.7931 0.411012 0.411012\\
-0.724138 3 0.177301 0.177301\\
-0.517241 -3 -0.132759 -0.132759\\
-0.517241 -2.7931 -0.320311 -0.320311\\
-0.517241 -2.58621 -0.676213 -0.676213\\
-0.517241 -2.37931 -1.24325 -1.24325\\
-0.517241 -2.17241 -1.97099 -1.97099\\
-0.517241 -1.96552 -2.64473 -2.64473\\
-0.517241 -1.75862 -2.89303 -2.89303\\
-0.517241 -1.55172 -2.34663 -2.34663\\
-0.517241 -1.34483 -0.911525 -0.911525\\
-0.517241 -1.13793 1.04009 1.04009\\
-0.517241 -0.931034 2.78655 2.78655\\
-0.517241 -0.724138 3.6812 3.6812\\
-0.517241 -0.517241 3.5628 3.5628\\
-0.517241 -0.310345 2.78199 2.78199\\
-0.517241 -0.103448 1.83985 1.83985\\
-0.517241 0.103448 1.0384 1.0384\\
-0.517241 0.310345 0.486622 0.486622\\
-0.517241 0.517241 0.338968 0.338968\\
-0.517241 0.724138 0.857835 0.857835\\
-0.517241 0.931034 2.15361 2.15361\\
-0.517241 1.13793 3.90884 3.90884\\
-0.517241 1.34483 5.45144 5.45144\\
-0.517241 1.55172 6.15682 6.15682\\
-0.517241 1.75862 5.81978 5.81978\\
-0.517241 1.96552 4.70378 4.70378\\
-0.517241 2.17241 3.29858 3.29858\\
-0.517241 2.37931 2.0281 2.0281\\
-0.517241 2.58621 1.10181 1.10181\\
-0.517241 2.7931 0.532051 0.532051\\
-0.517241 3 0.229426 0.229426\\
-0.310345 -3 -0.186658 -0.186658\\
-0.310345 -2.7931 -0.443828 -0.443828\\
-0.310345 -2.58621 -0.930362 -0.930362\\
-0.310345 -2.37931 -1.71075 -1.71075\\
-0.310345 -2.17241 -2.73589 -2.73589\\
-0.310345 -1.96552 -3.75111 -3.75111\\
-0.310345 -1.75862 -4.29729 -4.29729\\
-0.310345 -1.55172 -3.89607 -3.89607\\
-0.310345 -1.34483 -2.37968 -2.37968\\
-0.310345 -1.13793 -0.133483 -0.133483\\
-0.310345 -0.931034 2.0214 2.0214\\
-0.310345 -0.724138 3.31521 3.31521\\
-0.310345 -0.517241 3.51332 3.51332\\
-0.310345 -0.310345 2.9609 2.9609\\
-0.310345 -0.103448 2.17806 2.17806\\
-0.310345 0.103448 1.46869 1.46869\\
-0.310345 0.310345 0.941198 0.941198\\
-0.310345 0.517241 0.790474 0.790474\\
-0.310345 0.724138 1.36012 1.36012\\
-0.310345 0.931034 2.81831 2.81831\\
-0.310345 1.13793 4.81839 4.81839\\
-0.310345 1.34483 6.5803 6.5803\\
-0.310345 1.55172 7.3687 7.3687\\
-0.310345 1.75862 6.93835 6.93835\\
-0.310345 1.96552 5.59703 5.59703\\
-0.310345 2.17241 3.92093 3.92093\\
-0.310345 2.37931 2.40934 2.40934\\
-0.310345 2.58621 1.30847 1.30847\\
-0.310345 2.7931 0.631707 0.631707\\
-0.310345 3 0.272361 0.272361\\
-0.103448 -3 -0.230497 -0.230497\\
-0.103448 -2.7931 -0.543026 -0.543026\\
-0.103448 -2.58621 -1.13332 -1.13332\\
-0.103448 -2.37931 -2.08498 -2.08498\\
-0.103448 -2.17241 -3.35581 -3.35581\\
-0.103448 -1.96552 -4.67095 -4.67095\\
-0.103448 -1.75862 -5.51724 -5.51724\\
-0.103448 -1.55172 -5.34192 -5.34192\\
-0.103448 -1.34483 -3.91637 -3.91637\\
-0.103448 -1.13793 -1.61294 -1.61294\\
-0.103448 -0.931034 0.706615 0.706615\\
-0.103448 -0.724138 2.20939 2.20939\\
-0.103448 -0.517241 2.61639 2.61639\\
-0.103448 -0.310345 2.26061 2.26061\\
-0.103448 -0.103448 1.66161 1.66161\\
-0.103448 0.103448 1.11368 1.11368\\
-0.103448 0.310345 0.715383 0.715383\\
-0.103448 0.517241 0.675978 0.675978\\
-0.103448 0.724138 1.37735 1.37735\\
-0.103448 0.931034 3.01439 3.01439\\
-0.103448 1.13793 5.22055 5.22055\\
-0.103448 1.34483 7.15452 7.15452\\
-0.103448 1.55172 8.02081 8.02081\\
-0.103448 1.75862 7.55561 7.55561\\
-0.103448 1.96552 6.09608 6.09608\\
-0.103448 2.17241 4.2709 4.2709\\
-0.103448 2.37931 2.62451 2.62451\\
-0.103448 2.58621 1.42536 1.42536\\
-0.103448 2.7931 0.688151 0.688151\\
-0.103448 3 0.2967 0.2967\\
0.103448 -3 -0.253033 -0.253033\\
0.103448 -2.7931 -0.592471 -0.592471\\
0.103448 -2.58621 -1.23294 -1.23294\\
0.103448 -2.37931 -2.26939 -2.26939\\
0.103448 -2.17241 -3.66948 -3.66948\\
0.103448 -1.96552 -5.16152 -5.16152\\
0.103448 -1.75862 -6.22327 -6.22327\\
0.103448 -1.55172 -6.2781 -6.2781\\
0.103448 -1.34483 -5.06206 -5.06206\\
0.103448 -1.13793 -2.91025 -2.91025\\
0.103448 -0.931034 -0.657326 -0.657326\\
0.103448 -0.724138 0.871784 0.871784\\
0.103448 -0.517241 1.38572 1.38572\\
0.103448 -0.310345 1.19133 1.19133\\
0.103448 -0.103448 0.778522 0.778522\\
0.103448 0.103448 0.416878 0.416878\\
0.103448 0.310345 0.188815 0.188815\\
0.103448 0.517241 0.295259 0.295259\\
0.103448 0.724138 1.11507 1.11507\\
0.103448 0.931034 2.84328 2.84328\\
0.103448 1.13793 5.11554 5.11554\\
0.103448 1.34483 7.09427 7.09427\\
0.103448 1.55172 7.98866 7.98866\\
0.103448 1.75862 7.53971 7.53971\\
0.103448 1.96552 6.08882 6.08882\\
0.103448 2.17241 4.26785 4.26785\\
0.103448 2.37931 2.62332 2.62332\\
0.103448 2.58621 1.42494 1.42494\\
0.103448 2.7931 0.688012 0.688012\\
0.103448 3 0.296658 0.296658\\
0.310345 -3 -0.248659 -0.248659\\
0.310345 -2.7931 -0.579789 -0.579789\\
0.310345 -2.58621 -1.20411 -1.20411\\
0.310345 -2.37931 -2.21688 -2.21688\\
0.310345 -2.17241 -3.59532 -3.59532\\
0.310345 -1.96552 -5.09178 -5.09178\\
0.310345 -1.75862 -6.21934 -6.21934\\
0.310345 -1.55172 -6.43 -6.43\\
0.310345 -1.34483 -5.45434 -5.45434\\
0.310345 -1.13793 -3.57168 -3.57168\\
0.310345 -0.931034 -1.52847 -1.52847\\
0.310345 -0.724138 -0.0779157 -0.0779157\\
0.310345 -0.517241 0.499702 0.499702\\
0.310345 -0.310345 0.461851 0.461851\\
0.310345 -0.103448 0.23159 0.23159\\
0.310345 0.103448 0.0352445 0.0352445\\
0.310345 0.310345 -0.06329 -0.06329\\
0.310345 0.517241 0.11751 0.11751\\
0.310345 0.724138 0.928281 0.928281\\
0.310345 0.931034 2.55334 2.55334\\
0.310345 1.13793 4.66363 4.66363\\
0.310345 1.34483 6.49481 6.49481\\
0.310345 1.55172 7.32432 7.32432\\
0.310345 1.75862 6.91684 6.91684\\
0.310345 1.96552 5.58734 5.58734\\
0.310345 2.17241 3.91688 3.91688\\
0.310345 2.37931 2.40778 2.40778\\
0.310345 2.58621 1.30791 1.30791\\
0.310345 2.7931 0.631526 0.631526\\
0.310345 3 0.272307 0.272307\\
0.517241 -3 -0.219662 -0.219662\\
0.517241 -2.7931 -0.510689 -0.510689\\
0.517241 -2.58621 -1.05895 -1.05895\\
0.517241 -2.37931 -1.94925 -1.94925\\
0.517241 -2.17241 -3.16566 -3.16566\\
0.517241 -1.96552 -4.49859 -4.49859\\
0.517241 -1.75862 -5.52973 -5.52973\\
0.517241 -1.55172 -5.7811 -5.7811\\
0.517241 -1.34483 -5.00348 -5.00348\\
0.517241 -1.13793 -3.41064 -3.41064\\
0.517241 -0.931034 -1.61915 -1.61915\\
0.517241 -0.724138 -0.267611 -0.267611\\
0.517241 -0.517241 0.386059 0.386059\\
0.517241 -0.310345 0.525019 0.525019\\
0.517241 -0.103448 0.470901 0.470901\\
0.517241 0.103448 0.389923 0.389923\\
0.517241 0.310345 0.328602 0.328602\\
0.517241 0.517241 0.449405 0.449405\\
0.517241 0.724138 1.06783 1.06783\\
0.517241 0.931034 2.36118 2.36118\\
0.517241 1.13793 4.06933 4.06933\\
0.517241 1.34483 5.55743 5.55743\\
0.517241 1.55172 6.21865 6.21865\\
0.517241 1.75862 5.85216 5.85216\\
0.517241 1.96552 4.71913 4.71913\\
0.517241 2.17241 3.3052 3.3052\\
0.517241 2.37931 2.03071 2.03071\\
0.517241 2.58621 1.10275 1.10275\\
0.517241 2.7931 0.532361 0.532361\\
0.517241 3 0.22952 0.22952\\
0.724138 -3 -0.174865 -0.174865\\
0.724138 -2.7931 -0.405717 -0.405717\\
0.724138 -2.58621 -0.840118 -0.840118\\
0.724138 -2.37931 -1.54517 -1.54517\\
0.724138 -2.17241 -2.50849 -2.50849\\
0.724138 -1.96552 -3.56432 -3.56432\\
0.724138 -1.75862 -4.37987 -4.37987\\
0.724138 -1.55172 -4.5699 -4.5699\\
0.724138 -1.34483 -3.92222 -3.92222\\
0.724138 -1.13793 -2.58496 -2.58496\\
0.724138 -0.931034 -1.02867 -1.02867\\
0.724138 -0.724138 0.240491 0.240491\\
0.724138 -0.517241 0.990297 0.990297\\
0.724138 -0.310345 1.31574 1.31574\\
0.724138 -0.103448 1.41913 1.41913\\
0.724138 0.103448 1.39878 1.39878\\
0.724138 0.310345 1.28698 1.28698\\
0.724138 0.517241 1.23218 1.23218\\
0.724138 0.724138 1.51748 1.51748\\
0.724138 0.931034 2.32079 2.32079\\
0.724138 1.13793 3.47133 3.47133\\
0.724138 1.34483 4.49291 4.49291\\
0.724138 1.55172 4.917 4.917\\
0.724138 1.75862 4.58058 4.58058\\
0.724138 1.96552 3.67522 3.67522\\
0.724138 2.17241 2.56718 2.56718\\
0.724138 2.37931 1.57489 1.57489\\
0.724138 2.58621 0.854455 0.854455\\
0.724138 2.7931 0.412266 0.412266\\
0.724138 3 0.177679 0.177679\\
0.931034 -3 -0.125606 -0.125606\\
0.931034 -2.7931 -0.291017 -0.291017\\
0.931034 -2.58621 -0.60175 -0.60175\\
0.931034 -2.37931 -1.10488 -1.10488\\
0.931034 -2.17241 -1.78935 -1.78935\\
0.931034 -1.96552 -2.53203 -2.53203\\
0.931034 -1.75862 -3.08664 -3.08664\\
0.931034 -1.55172 -3.16474 -3.16474\\
0.931034 -1.34483 -2.59825 -2.59825\\
0.931034 -1.13793 -1.4782 -1.4782\\
0.931034 -0.931034 -0.136462 -0.136462\\
0.931034 -0.724138 1.04996 1.04996\\
0.931034 -0.517241 1.87633 1.87633\\
0.931034 -0.310345 2.35516 2.35516\\
0.931034 -0.103448 2.57622 2.57622\\
0.931034 0.103448 2.57541 2.57541\\
0.931034 0.310345 2.37449 2.37449\\
0.931034 0.517241 2.11033 2.11033\\
0.931034 0.724138 2.03542 2.03542\\
0.931034 0.931034 2.32912 2.32912\\
0.931034 1.13793 2.90927 2.90927\\
0.931034 1.34483 3.45624 3.45624\\
0.931034 1.55172 3.63745 3.63745\\
0.931034 1.75862 3.32609 3.32609\\
0.931034 1.96552 2.64365 2.64365\\
0.931034 2.17241 1.83727 1.83727\\
0.931034 2.37931 1.12387 1.12387\\
0.931034 2.58621 0.608712 0.608712\\
0.931034 2.7931 0.293386 0.293386\\
0.931034 3 0.126358 0.126358\\
1.13793 -3 -0.0814403 -0.0814403\\
1.13793 -2.7931 -0.188504 -0.188504\\
1.13793 -2.58621 -0.389122 -0.389122\\
1.13793 -2.37931 -0.712417 -0.712417\\
1.13793 -2.17241 -1.14799 -1.14799\\
1.13793 -1.96552 -1.6097 -1.6097\\
1.13793 -1.75862 -1.92741 -1.92741\\
1.13793 -1.55172 -1.89976 -1.89976\\
1.13793 -1.34483 -1.40214 -1.40214\\
1.13793 -1.13793 -0.482425 -0.482425\\
1.13793 -0.931034 0.643099 0.643099\\
1.13793 -0.724138 1.70977 1.70977\\
1.13793 -0.517241 2.54389 2.54389\\
1.13793 -0.310345 3.09894 3.09894\\
1.13793 -0.103448 3.38012 3.38012\\
1.13793 0.103448 3.37781 3.37781\\
1.13793 0.310345 3.10636 3.10636\\
1.13793 0.517241 2.68829 2.68829\\
1.13793 0.724138 2.34179 2.34179\\
1.13793 0.931034 2.23871 2.23871\\
1.13793 1.13793 2.36582 2.36582\\
1.13793 1.34483 2.53363 2.53363\\
1.13793 1.55172 2.52508 2.52508\\
1.13793 1.75862 2.24563 2.24563\\
1.13793 1.96552 1.75905 1.75905\\
1.13793 2.17241 1.21277 1.21277\\
1.13793 2.37931 0.73847 0.73847\\
1.13793 2.58621 0.398875 0.398875\\
1.13793 2.7931 0.191922 0.191922\\
1.13793 3 0.0825681 0.0825681\\
1.34483 -3 -0.0476401 -0.0476401\\
1.34483 -2.7931 -0.110194 -0.110194\\
1.34483 -2.58621 -0.226969 -0.226969\\
1.34483 -2.37931 -0.413675 -0.413675\\
1.34483 -2.17241 -0.660994 -0.660994\\
1.34483 -1.96552 -0.912152 -0.912152\\
1.34483 -1.75862 -1.05728 -1.05728\\
1.34483 -1.55172 -0.96501 -0.96501\\
1.34483 -1.34483 -0.548781 -0.548781\\
1.34483 -1.13793 0.171571 0.171571\\
1.34483 -0.931034 1.06579 1.06579\\
1.34483 -0.724138 1.95877 1.95877\\
1.34483 -0.517241 2.71193 2.71193\\
1.34483 -0.310345 3.2506 3.2506\\
1.34483 -0.103448 3.53239 3.53239\\
1.34483 0.103448 3.52356 3.52356\\
1.34483 0.310345 3.23333 3.23333\\
1.34483 0.517241 2.76434 2.76434\\
1.34483 0.724138 2.29391 2.29391\\
1.34483 0.931034 1.97274 1.97274\\
1.34483 1.13793 1.82798 1.82798\\
1.34483 1.34483 1.76257 1.76257\\
1.34483 1.55172 1.64619 1.64619\\
1.34483 1.75862 1.41182 1.41182\\
1.34483 1.96552 1.08402 1.08402\\
1.34483 2.17241 0.739014 0.739014\\
1.34483 2.37931 0.447054 0.447054\\
1.34483 2.58621 0.240518 0.240518\\
1.34483 2.7931 0.115441 0.115441\\
1.34483 3 0.0495856 0.0495856\\
1.55172 -3 -0.0251064 -0.0251064\\
1.55172 -2.7931 -0.0580428 -0.0580428\\
1.55172 -2.58621 -0.119191 -0.119191\\
1.55172 -2.37931 -0.215764 -0.215764\\
1.55172 -2.17241 -0.340209 -0.340209\\
1.55172 -1.96552 -0.457366 -0.457366\\
1.55172 -1.75862 -0.500907 -0.500907\\
1.55172 -1.55172 -0.390719 -0.390719\\
1.55172 -1.34483 -0.0706056 -0.0706056\\
1.55172 -1.13793 0.454781 0.454781\\
1.55172 -0.931034 1.11298 1.11298\\
1.55172 -0.724138 1.7951 1.7951\\
1.55172 -0.517241 2.39904 2.39904\\
1.55172 -0.310345 2.84881 2.84881\\
1.55172 -0.103448 3.08714 3.08714\\
1.55172 0.103448 3.0747 3.0747\\
1.55172 0.310345 2.81719 2.81719\\
1.55172 0.517241 2.39316 2.39316\\
1.55172 0.724138 1.9353 1.9353\\
1.55172 0.931034 1.56243 1.56243\\
1.55172 1.13793 1.31586 1.31586\\
1.55172 1.34483 1.15453 1.15453\\
1.55172 1.55172 1.00649 1.00649\\
1.55172 1.75862 0.826988 0.826988\\
1.55172 1.96552 0.619227 0.619227\\
1.55172 2.17241 0.416012 0.416012\\
1.55172 2.37931 0.249479 0.249479\\
1.55172 2.58621 0.133509 0.133509\\
1.55172 2.7931 0.0638657 0.0638657\\
1.55172 3 0.0273729 0.0273729\\
1.75862 -3 -0.0118882 -0.0118882\\
1.75862 -2.7931 -0.0274717 -0.0274717\\
1.75862 -2.58621 -0.0561689 -0.0561689\\
1.75862 -2.37931 -0.100647 -0.100647\\
1.75862 -2.17241 -0.155452 -0.155452\\
1.75862 -1.96552 -0.200216 -0.200216\\
1.75862 -1.75862 -0.19756 -0.19756\\
1.75862 -1.55172 -0.101897 -0.101897\\
1.75862 -1.34483 0.120734 0.120734\\
1.75862 -1.13793 0.472005 0.472005\\
1.75862 -0.931034 0.914689 0.914689\\
1.75862 -0.724138 1.38545 1.38545\\
1.75862 -0.517241 1.81564 1.81564\\
1.75862 -0.310345 2.14384 2.14384\\
1.75862 -0.103448 2.31877 2.31877\\
1.75862 0.103448 2.3069 2.3069\\
1.75862 0.310345 2.11159 2.11159\\
1.75862 0.517241 1.78713 1.78713\\
1.75862 0.724138 1.42382 1.42382\\
1.75862 0.931034 1.10543 1.10543\\
1.75862 1.13793 0.870283 0.870283\\
1.75862 1.34483 0.705756 0.705756\\
1.75862 1.55172 0.575329 0.575329\\
1.75862 1.75862 0.451148 0.451148\\
1.75862 1.96552 0.328015 0.328015\\
1.75862 2.17241 0.216456 0.216456\\
1.75862 2.37931 0.128396 0.128396\\
1.75862 2.58621 0.0682461 0.0682461\\
1.75862 2.7931 0.0325058 0.0325058\\
1.75862 3 0.0138928 0.0138928\\
1.96552 -3 -0.0050352 -0.0050352\\
1.96552 -2.7931 -0.0116295 -0.0116295\\
1.96552 -2.58621 -0.0236258 -0.0236258\\
1.96552 -2.37931 -0.0416805 -0.0416805\\
1.96552 -2.17241 -0.0622968 -0.0622968\\
1.96552 -1.96552 -0.07449 -0.07449\\
1.96552 -1.75862 -0.0586517 -0.0586517\\
1.96552 -1.55172 0.00935948 0.00935948\\
1.96552 -1.34483 0.14855 0.14855\\
1.96552 -1.13793 0.362034 0.362034\\
1.96552 -0.931034 0.632157 0.632157\\
1.96552 -0.724138 0.924637 0.924637\\
1.96552 -0.517241 1.19761 1.19761\\
1.96552 -0.310345 1.40907 1.40907\\
1.96552 -0.103448 1.52214 1.52214\\
1.96552 0.103448 1.51324 1.51324\\
1.96552 0.310345 1.38422 1.38422\\
1.96552 0.517241 1.16886 1.16886\\
1.96552 0.724138 0.922718 0.922718\\
1.96552 0.931034 0.698602 0.698602\\
1.96552 1.13793 0.524531 0.524531\\
1.96552 1.34483 0.399423 0.399423\\
1.96552 1.55172 0.306222 0.306222\\
1.96552 1.75862 0.228927 0.228927\\
1.96552 1.96552 0.161119 0.161119\\
1.96552 2.17241 0.10413 0.10413\\
1.96552 2.37931 0.0609623 0.0609623\\
1.96552 2.58621 0.0321353 0.0321353\\
1.96552 2.7931 0.0152245 0.0152245\\
1.96552 3 0.00648404 0.00648404\\
2.17241 -3 -0.00189335 -0.00189335\\
2.17241 -2.7931 -0.00436948 -0.00436948\\
2.17241 -2.58621 -0.00878937 -0.00878937\\
2.17241 -2.37931 -0.0151276 -0.0151276\\
2.17241 -2.17241 -0.0213864 -0.0213864\\
2.17241 -1.96552 -0.0220795 -0.0220795\\
2.17241 -1.75862 -0.00766087 -0.00766087\\
2.17241 -1.55172 0.0337268 0.0337268\\
2.17241 -1.34483 0.111889 0.111889\\
2.17241 -1.13793 0.229379 0.229379\\
2.17241 -0.931034 0.378475 0.378475\\
2.17241 -0.724138 0.541994 0.541994\\
2.17241 -0.517241 0.696839 0.696839\\
2.17241 -0.310345 0.818027 0.818027\\
2.17241 -0.103448 0.882959 0.882959\\
2.17241 0.103448 0.877381 0.877381\\
2.17241 0.310345 0.802238 0.802238\\
2.17241 0.517241 0.676436 0.676436\\
2.17241 0.724138 0.530814 0.530814\\
2.17241 0.931034 0.395203 0.395203\\
2.17241 1.13793 0.286917 0.286917\\
2.17241 1.34483 0.207999 0.207999\\
2.17241 1.55172 0.151122 0.151122\\
2.17241 1.75862 0.107852 0.107852\\
2.17241 1.96552 0.0733502 0.0733502\\
2.17241 2.17241 0.0463188 0.0463188\\
2.17241 2.37931 0.0267096 0.0267096\\
2.17241 2.58621 0.0139421 0.0139421\\
2.17241 2.7931 0.00656301 0.00656301\\
2.17241 3 0.00278328 0.00278328\\
2.37931 -3 -0.000623767 -0.000623767\\
2.37931 -2.7931 -0.00143749 -0.00143749\\
2.37931 -2.58621 -0.00284481 -0.00284481\\
2.37931 -2.37931 -0.00469273 -0.00469273\\
2.37931 -2.17241 -0.00596047 -0.00596047\\
2.37931 -1.96552 -0.00412104 -0.00412104\\
2.37931 -1.75862 0.0051243 0.0051243\\
2.37931 -1.55172 0.027159 0.027159\\
2.37931 -1.34483 0.0666283 0.0666283\\
2.37931 -1.13793 0.125114 0.125114\\
2.37931 -0.931034 0.1995 0.1995\\
2.37931 -0.724138 0.281848 0.281848\\
2.37931 -0.517241 0.360638 0.360638\\
2.37931 -0.310345 0.422744 0.422744\\
2.37931 -0.103448 0.456074 0.456074\\
2.37931 0.103448 0.453063 0.453063\\
2.37931 0.310345 0.414152 0.414152\\
2.37931 0.517241 0.348869 0.348869\\
2.37931 0.724138 0.272665 0.272665\\
2.37931 0.931034 0.200672 0.200672\\
2.37931 1.13793 0.142202 0.142202\\
2.37931 1.34483 0.0992372 0.0992372\\
2.37931 1.55172 0.068882 0.068882\\
2.37931 1.75862 0.0470728 0.0470728\\
2.37931 1.96552 0.0309237 0.0309237\\
2.37931 2.17241 0.0190478 0.0190478\\
2.37931 2.37931 0.0107998 0.0107998\\
2.37931 2.58621 0.00557429 0.00557429\\
2.37931 2.7931 0.00260445 0.00260445\\
2.37931 3 0.00109897 0.00109897\\
2.58621 -3 -0.000175482 -0.000175482\\
2.58621 -2.7931 -0.000403249 -0.000403249\\
2.58621 -2.58621 -0.000774456 -0.000774456\\
2.58621 -2.37931 -0.0011738 -0.0011738\\
2.58621 -2.17241 -0.00113318 -0.00113318\\
2.58621 -1.96552 0.000417356 0.000417356\\
2.58621 -1.75862 0.00526302 0.00526302\\
2.58621 -1.55172 0.0156564 0.0156564\\
2.58621 -1.34483 0.033613 0.033613\\
2.58621 -1.13793 0.0599507 0.0599507\\
2.58621 -0.931034 0.093511 0.093511\\
2.58621 -0.724138 0.130924 0.130924\\
2.58621 -0.517241 0.166992 0.166992\\
2.58621 -0.310345 0.195572 0.195572\\
2.58621 -0.103448 0.210932 0.210932\\
2.58621 0.103448 0.209506 0.209506\\
2.58621 0.310345 0.191483 0.191483\\
2.58621 0.517241 0.161193 0.161193\\
2.58621 0.724138 0.12563 0.12563\\
2.58621 0.931034 0.0917045 0.0917045\\
2.58621 1.13793 0.0638424 0.0638424\\
2.58621 1.34483 0.0432598 0.0432598\\
2.58621 1.55172 0.0289043 0.0289043\\
2.58621 1.75862 0.0189908 0.0189908\\
2.58621 1.96552 0.0120598 0.0120598\\
2.58621 2.17241 0.00723898 0.00723898\\
2.58621 2.37931 0.00402989 0.00402989\\
2.58621 2.58621 0.00205407 0.00205407\\
2.58621 2.7931 0.00095157 0.00095157\\
2.58621 3 0.000399203 0.000399203\\
2.7931 -3 -3.96948e-05 -3.96948e-05\\
2.7931 -2.7931 -9.05965e-05 -9.05965e-05\\
2.7931 -2.58621 -0.000162474 -0.000162474\\
2.7931 -2.37931 -0.000194303 -0.000194303\\
2.7931 -2.17241 7.19879e-06 7.19879e-06\\
2.7931 -1.96552 0.000857423 0.000857423\\
2.7931 -1.75862 0.00303841 0.00303841\\
2.7931 -1.55172 0.00741665 0.00741665\\
2.7931 -1.34483 0.0147914 0.0147914\\
2.7931 -1.13793 0.0255296 0.0255296\\
2.7931 -0.931034 0.0392344 0.0392344\\
2.7931 -0.724138 0.054595 0.054595\\
2.7931 -0.517241 0.0694876 0.0694876\\
2.7931 -0.310345 0.0813346 0.0813346\\
2.7931 -0.103448 0.0877108 0.0877108\\
2.7931 0.103448 0.0871123 0.0871123\\
2.7931 0.310345 0.0796121 0.0796121\\
2.7931 0.517241 0.0669882 0.0669882\\
2.7931 0.724138 0.052104 0.052104\\
2.7931 0.931034 0.0378074 0.0378074\\
2.7931 1.13793 0.0259752 0.0259752\\
2.7931 1.34483 0.0172027 0.0172027\\
2.7931 1.55172 0.011138 0.011138\\
2.7931 1.75862 0.00706689 0.00706689\\
2.7931 1.96552 0.00434524 0.00434524\\
2.7931 2.17241 0.00254112 0.00254112\\
2.7931 2.37931 0.00138752 0.00138752\\
2.7931 2.58621 0.000697613 0.000697613\\
2.7931 2.7931 0.000320123 0.000320123\\
2.7931 3 0.000133419 0.000133419\\
3 -3 -5.86419e-06 -5.86419e-06\\
3 -2.7931 -1.30519e-05 -1.30519e-05\\
3 -2.58621 -1.7594e-05 -1.7594e-05\\
3 -2.37931 6.93014e-06 6.93014e-06\\
3 -2.17241 0.000132566 0.000132566\\
3 -1.96552 0.000506944 0.000506944\\
3 -1.75862 0.0013693 0.0013693\\
3 -1.55172 0.00302545 0.00302545\\
3 -1.34483 0.00576477 0.00576477\\
3 -1.13793 0.00973264 0.00973264\\
3 -0.931034 0.014804 0.014804\\
3 -0.724138 0.0205119 0.0205119\\
3 -0.517241 0.0260704 0.0260704\\
3 -0.310345 0.0305058 0.0305058\\
3 -0.103448 0.0328962 0.0328962\\
3 0.103448 0.0326716 0.0326716\\
3 0.310345 0.0298578 0.0298578\\
3 0.517241 0.0251155 0.0251155\\
3 0.724138 0.0195062 0.0195062\\
3 0.931034 0.0140913 0.0140913\\
3 1.13793 0.00958498 0.00958498\\
3 1.34483 0.0062353 0.0062353\\
3 1.55172 0.00393403 0.00393403\\
3 1.75862 0.00242112 0.00242112\\
3 1.96552 0.00144462 0.00144462\\
3 2.17241 0.000823374 0.000823374\\
3 2.37931 0.000440701 0.000440701\\
3 2.58621 0.00021836 0.00021836\\
3 2.7931 9.91668e-05 9.91668e-05\\
3 3 4.10297e-05 4.10297e-05\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.698\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 10,
tick align=outside,
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 20,
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmode=log,
zmin= 1,
zmax= 100,
zminorticks=true,
zmajorgrids,
zminorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left,
legend style={at={(1.03,1)},anchor=north west,legend cell align=left,align=left,draw=black}
]
\addplot3[%
surf,
shader=flat corner,draw=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=10]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
1 1 2 2\\
1 2 1.71592 1.71592\\
1 3 1 1\\
1 4 1.7936 1.7936\\
1 5 2.23607 2.23607\\
1 6 2 2\\
1 7 1 1\\
1 8 2.55754 2.55754\\
1 9 4.23607 4.23607\\
1 10 5.52015 5.52015\\
1 11 16 16\\
1 12 5.52015 5.52015\\
1 13 4.23607 4.23607\\
1 14 2.55754 2.55754\\
1 15 1 1\\
1 16 2 2\\
1 17 2.23607 2.23607\\
1 18 1.7936 1.7936\\
1 19 1 1\\
1 20 1.71592 1.71592\\
2 1 1 1\\
2 2 1 1\\
2 3 1 1\\
2 4 1 1\\
2 5 1 1\\
2 6 1 1\\
2 7 1 1\\
2 8 1 1\\
2 9 1 1\\
2 10 1 1\\
2 11 1 1\\
2 12 1 1\\
2 13 1 1\\
2 14 1 1\\
2 15 1 1\\
2 16 1 1\\
2 17 1 1\\
2 18 1 1\\
2 19 1 1\\
2 20 1 1\\
3 1 2.23607 2.23607\\
3 2 1.88493 1.88493\\
3 3 1 1\\
3 4 1.98095 1.98095\\
3 5 2.52786 2.52786\\
3 6 2.23607 2.23607\\
3 7 1 1\\
3 8 2.92522 2.92522\\
3 9 5 5\\
3 10 6.58721 6.58721\\
3 11 19.541 19.541\\
3 12 6.58721 6.58721\\
3 13 5 5\\
3 14 2.92522 2.92522\\
3 15 1 1\\
3 16 2.23607 2.23607\\
3 17 2.52786 2.52786\\
3 18 1.98095 1.98095\\
3 19 1 1\\
3 20 1.88493 1.88493\\
4 1 1 1\\
4 2 1 1\\
4 3 1 1\\
4 4 1 1\\
4 5 1 1\\
4 6 1 1\\
4 7 1 1\\
4 8 1 1\\
4 9 1 1\\
4 10 1 1\\
4 11 1 1\\
4 12 1 1\\
4 13 1 1\\
4 14 1 1\\
4 15 1 1\\
4 16 1 1\\
4 17 1 1\\
4 18 1 1\\
4 19 1 1\\
4 20 1 1\\
5 1 4.23607 4.23607\\
5 2 3.31677 3.31677\\
5 3 1 1\\
5 4 3.56816 3.56816\\
5 5 5 5\\
5 6 4.23607 4.23607\\
5 7 1 1\\
5 8 6.04029 6.04029\\
5 9 11.4721 11.4721\\
5 10 15.6275 15.6275\\
5 11 49.541 49.541\\
5 12 15.6275 15.6275\\
5 13 11.4721 11.4721\\
5 14 6.04029 6.04029\\
5 15 1 1\\
5 16 4.23607 4.23607\\
5 17 5 5\\
5 18 3.56816 3.56816\\
5 19 1 1\\
5 20 3.31677 3.31677\\
6 1 6 6\\
6 2 4.5796 4.5796\\
6 3 1 1\\
6 4 4.96802 4.96802\\
6 5 7.18034 7.18034\\
6 6 6 6\\
6 7 1 1\\
6 8 8.78768 8.78768\\
6 9 17.1803 17.1803\\
6 10 23.6007 23.6007\\
6 11 76 76\\
6 12 23.6007 23.6007\\
6 13 17.1803 17.1803\\
6 14 8.78768 8.78768\\
6 15 1 1\\
6 16 6 6\\
6 17 7.18034 7.18034\\
6 18 4.96802 4.96802\\
6 19 1 1\\
6 20 4.5796 4.5796\\
7 1 4.23607 4.23607\\
7 2 3.31677 3.31677\\
7 3 1 1\\
7 4 3.56816 3.56816\\
7 5 5 5\\
7 6 4.23607 4.23607\\
7 7 1 1\\
7 8 6.04029 6.04029\\
7 9 11.4721 11.4721\\
7 10 15.6275 15.6275\\
7 11 49.541 49.541\\
7 12 15.6275 15.6275\\
7 13 11.4721 11.4721\\
7 14 6.04029 6.04029\\
7 15 1 1\\
7 16 4.23607 4.23607\\
7 17 5 5\\
7 18 3.56816 3.56816\\
7 19 1 1\\
7 20 3.31677 3.31677\\
8 1 1 1\\
8 2 1 1\\
8 3 1 1\\
8 4 1 1\\
8 5 1 1\\
8 6 1 1\\
8 7 1 1\\
8 8 1 1\\
8 9 1 1\\
8 10 1 1\\
8 11 1 1\\
8 12 1 1\\
8 13 1 1\\
8 14 1 1\\
8 15 1 1\\
8 16 1 1\\
8 17 1 1\\
8 18 1 1\\
8 19 1 1\\
8 20 1 1\\
9 1 2.23607 2.23607\\
9 2 1.88493 1.88493\\
9 3 1 1\\
9 4 1.98095 1.98095\\
9 5 2.52786 2.52786\\
9 6 2.23607 2.23607\\
9 7 1 1\\
9 8 2.92522 2.92522\\
9 9 5 5\\
9 10 6.58721 6.58721\\
9 11 19.541 19.541\\
9 12 6.58721 6.58721\\
9 13 5 5\\
9 14 2.92522 2.92522\\
9 15 1 1\\
9 16 2.23607 2.23607\\
9 17 2.52786 2.52786\\
9 18 1.98095 1.98095\\
9 19 1 1\\
9 20 1.88493 1.88493\\
10 1 1 1\\
10 2 1 1\\
10 3 1 1\\
10 4 1 1\\
10 5 1 1\\
10 6 1 1\\
10 7 1 1\\
10 8 1 1\\
10 9 1 1\\
10 10 1 1\\
10 11 1 1\\
10 12 1 1\\
10 13 1 1\\
10 14 1 1\\
10 15 1 1\\
10 16 1 1\\
10 17 1 1\\
10 18 1 1\\
10 19 1 1\\
10 20 1 1\\
};
\addlegendentry{legendary};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap={mymap}{[1pt] rgb(0pt)=(0,1,1); rgb(63pt)=(1,0,1)},
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=3.14159,
tick align=outside,
xlabel={x1 axis},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax=3.14159,
ylabel={x2 axis},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -1,
zmax= 1,
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
title style={font=\bfseries},
title={$\text{y}_\text{0}$},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[area legend,solid,table/row sep=crcr,patch,shader=interp,forget plot,patch table={%
0 1 2\\
3 4 5\\
6 7 8\\
9 10 11\\
12 13 14\\
15 16 17\\
18 19 20\\
21 22 23\\
24 25 26\\
27 28 29\\
30 31 32\\
33 34 35\\
36 37 38\\
39 40 41\\
42 43 44\\
45 46 47\\
48 49 50\\
51 52 53\\
54 55 56\\
57 58 59\\
60 61 62\\
63 64 65\\
66 67 68\\
69 70 71\\
72 73 74\\
75 76 77\\
78 79 80\\
81 82 83\\
84 85 86\\
87 88 89\\
90 91 92\\
93 94 95\\
96 97 98\\
99 100 101\\
102 103 104\\
105 106 107\\
108 109 110\\
111 112 113\\
114 115 116\\
117 118 119\\
120 121 122\\
123 124 125\\
126 127 128\\
129 130 131\\
132 133 134\\
135 136 137\\
138 139 140\\
141 142 143\\
144 145 146\\
147 148 149\\
150 151 152\\
153 154 155\\
156 157 158\\
159 160 161\\
162 163 164\\
165 166 167\\
168 169 170\\
171 172 173\\
174 175 176\\
177 178 179\\
180 181 182\\
183 184 185\\
186 187 188\\
189 190 191\\
192 193 194\\
195 196 197\\
198 199 200\\
201 202 203\\
204 205 206\\
207 208 209\\
210 211 212\\
213 214 215\\
216 217 218\\
219 220 221\\
222 223 224\\
225 226 227\\
228 229 230\\
231 232 233\\
234 235 236\\
237 238 239\\
240 241 242\\
243 244 245\\
246 247 248\\
249 250 251\\
252 253 254\\
255 256 257\\
258 259 260\\
261 262 263\\
264 265 266\\
267 268 269\\
270 271 272\\
273 274 275\\
276 277 278\\
279 280 281\\
282 283 284\\
285 286 287\\
288 289 290\\
291 292 293\\
294 295 296\\
297 298 299\\
300 301 302\\
303 304 305\\
306 307 308\\
309 310 311\\
312 313 314\\
315 316 317\\
318 319 320\\
321 322 323\\
324 325 326\\
327 328 329\\
330 331 332\\
333 334 335\\
336 337 338\\
339 340 341\\
342 343 344\\
345 346 347\\
348 349 350\\
351 352 353\\
354 355 356\\
357 358 359\\
360 361 362\\
363 364 365\\
366 367 368\\
369 370 371\\
372 373 374\\
375 376 377\\
378 379 380\\
381 382 383\\
384 385 386\\
387 388 389\\
390 391 392\\
393 394 395\\
396 397 398\\
399 400 401\\
402 403 404\\
405 406 407\\
408 409 410\\
411 412 413\\
414 415 416\\
417 418 419\\
420 421 422\\
423 424 425\\
426 427 428\\
429 430 431\\
432 433 434\\
435 436 437\\
438 439 440\\
441 442 443\\
444 445 446\\
447 448 449\\
450 451 452\\
453 454 455\\
456 457 458\\
459 460 461\\
462 463 464\\
465 466 467\\
468 469 470\\
471 472 473\\
474 475 476\\
477 478 479\\
480 481 482\\
483 484 485\\
486 487 488\\
489 490 491\\
492 493 494\\
495 496 497\\
498 499 500\\
501 502 503\\
504 505 506\\
507 508 509\\
510 511 512\\
513 514 515\\
516 517 518\\
519 520 521\\
522 523 524\\
525 526 527\\
528 529 530\\
531 532 533\\
534 535 536\\
537 538 539\\
540 541 542\\
543 544 545\\
546 547 548\\
549 550 551\\
552 553 554\\
555 556 557\\
558 559 560\\
561 562 563\\
564 565 566\\
567 568 569\\
570 571 572\\
573 574 575\\
576 577 578\\
579 580 581\\
582 583 584\\
585 586 587\\
588 589 590\\
591 592 593\\
594 595 596\\
597 598 599\\
600 601 602\\
603 604 605\\
606 607 608\\
609 610 611\\
612 613 614\\
615 616 617\\
618 619 620\\
621 622 623\\
624 625 626\\
627 628 629\\
630 631 632\\
633 634 635\\
636 637 638\\
639 640 641\\
642 643 644\\
645 646 647\\
648 649 650\\
651 652 653\\
654 655 656\\
657 658 659\\
660 661 662\\
663 664 665\\
666 667 668\\
669 670 671\\
672 673 674\\
675 676 677\\
678 679 680\\
681 682 683\\
684 685 686\\
687 688 689\\
690 691 692\\
693 694 695\\
696 697 698\\
699 700 701\\
702 703 704\\
705 706 707\\
708 709 710\\
711 712 713\\
714 715 716\\
717 718 719\\
720 721 722\\
723 724 725\\
726 727 728\\
729 730 731\\
732 733 734\\
735 736 737\\
738 739 740\\
741 742 743\\
744 745 746\\
747 748 749\\
750 751 752\\
753 754 755\\
756 757 758\\
759 760 761\\
762 763 764\\
765 766 767\\
768 769 770\\
771 772 773\\
774 775 776\\
777 778 779\\
780 781 782\\
783 784 785\\
786 787 788\\
789 790 791\\
792 793 794\\
795 796 797\\
798 799 800\\
801 802 803\\
804 805 806\\
807 808 809\\
810 811 812\\
813 814 815\\
816 817 818\\
819 820 821\\
822 823 824\\
825 826 827\\
828 829 830\\
831 832 833\\
834 835 836\\
837 838 839\\
840 841 842\\
843 844 845\\
846 847 848\\
849 850 851\\
852 853 854\\
855 856 857\\
858 859 860\\
861 862 863\\
864 865 866\\
867 868 869\\
870 871 872\\
873 874 875\\
876 877 878\\
879 880 881\\
882 883 884\\
885 886 887\\
888 889 890\\
891 892 893\\
894 895 896\\
897 898 899\\
900 901 902\\
903 904 905\\
906 907 908\\
909 910 911\\
912 913 914\\
915 916 917\\
918 919 920\\
921 922 923\\
924 925 926\\
927 928 929\\
930 931 932\\
933 934 935\\
936 937 938\\
939 940 941\\
942 943 944\\
945 946 947\\
948 949 950\\
951 952 953\\
954 955 956\\
957 958 959\\
960 961 962\\
963 964 965\\
}]
table[row sep=crcr, point meta=\thisrow{c}] {%
x y z c\\
2.82743 0 -0.951057 -0.951057\\
3.14159 0 -1 -1\\
2.93808 0.211515 -0.957536 -0.957536\\
0.203858 0.191401 0.96141 0.96141\\
0.314159 0 0.951057 0.951057\\
0.468587 0.252217 0.86398 0.86398\\
1.07568 0.270003 0.457921 0.457921\\
1.25664 0 0.309017 0.309017\\
1.4012 0.236999 0.164066 0.164066\\
0.769031 0.225061 0.700463 0.700463\\
0.942478 0 0.587785 0.587785\\
1.07568 0.270003 0.457921 0.457921\\
1.25664 0 0.309017 0.309017\\
1.5708 0 6.12323e-17 6.12323e-17\\
1.4012 0.236999 0.164066 0.164066\\
0 0.285599 0.959493 0.959493\\
0 0 1 1\\
0.203858 0.191401 0.96141 0.96141\\
0.314159 0 0.951057 0.951057\\
0.628319 0 0.809017 0.809017\\
0.468587 0.252217 0.86398 0.86398\\
0.468587 0.252217 0.86398 0.86398\\
0.628319 0 0.809017 0.809017\\
0.769031 0.225061 0.700463 0.700463\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.4479 0.839275 0.0818872 0.0818872\\
1.47443 0.611429 0.0787885 0.0787885\\
3.14159 2.82743 0.951057 0.951057\\
3.14159 3.14159 1 1\\
2.94982 2.9442 0.962605 0.962605\\
1.71157 0.277509 -0.134937 -0.134937\\
1.88496 0 -0.309017 -0.309017\\
2.05257 0.261101 -0.447649 -0.447649\\
2.86087 0.802994 -0.667368 -0.667368\\
3.14159 0.942478 -0.587785 -0.587785\\
2.93682 1.0928 -0.450388 -0.450388\\
3.14159 0.942478 -0.587785 -0.587785\\
3.14159 1.25664 -0.309017 -0.309017\\
2.93682 1.0928 -0.450388 -0.450388\\
2.83656 1.38478 -0.176405 -0.176405\\
3.14159 1.5708 -6.12323e-17 -6.12323e-17\\
2.92413 1.60737 0.0357029 0.0357029\\
2.51327 0 -0.809017 -0.809017\\
2.82743 0 -0.951057 -0.951057\\
2.68014 0.276254 -0.861458 -0.861458\\
2.93808 0.211515 -0.957536 -0.957536\\
3.14159 0.314159 -0.951057 -0.951057\\
2.90099 0.467579 -0.866948 -0.866948\\
3.14159 1.25664 -0.309017 -0.309017\\
3.14159 1.5708 -6.12323e-17 -6.12323e-17\\
2.83656 1.38478 -0.176405 -0.176405\\
2.92413 1.60737 0.0357029 0.0357029\\
3.14159 1.5708 -6.12323e-17 -6.12323e-17\\
2.97106 1.75571 0.181199 0.181199\\
2.90016 1.99679 0.401239 0.401239\\
3.14159 2.19911 0.587785 0.587785\\
2.92868 2.20132 0.576255 0.576255\\
0.285599 3.14159 -0.959493 -0.959493\\
0 3.14159 -1 -1\\
0.18516 2.96884 -0.968277 -0.968277\\
3.14159 2.51327 0.809017 0.809017\\
3.14159 2.82743 0.951057 0.951057\\
2.88214 2.68744 0.868558 0.868558\\
2.88214 2.68744 0.868558 0.868558\\
3.14159 2.82743 0.951057 0.951057\\
2.94982 2.9442 0.962605 0.962605\\
2.72571 2.92228 0.892848 0.892848\\
2.57039 3.14159 0.841254 0.841254\\
2.45055 2.88852 0.746036 0.746036\\
2.45055 2.88852 0.746036 0.746036\\
2.28479 3.14159 0.654861 0.654861\\
2.16456 2.92592 0.54652 0.54652\\
1.77191 2.78693 0.187327 0.187327\\
1.7136 3.14159 0.142315 0.142315\\
1.54845 2.90869 -0.0217419 -0.0217419\\
1.28589 2.84196 -0.268549 -0.268549\\
1.1424 3.14159 -0.415415 -0.415415\\
1.01974 2.90791 -0.509357 -0.509357\\
3.14159 3.14159 1 1\\
2.85599 3.14159 0.959493 0.959493\\
2.94982 2.9442 0.962605 0.962605\\
2.28479 3.14159 0.654861 0.654861\\
1.9992 3.14159 0.415415 0.415415\\
2.16456 2.92592 0.54652 0.54652\\
3.14159 2.19911 0.587785 0.587785\\
3.14159 2.51327 0.809017 0.809017\\
2.91737 2.38551 0.709316 0.709316\\
2.16456 2.92592 0.54652 0.54652\\
1.9992 3.14159 0.415415 0.415415\\
1.93722 2.94652 0.35148 0.35148\\
0.571199 3.14159 -0.841254 -0.841254\\
0.285599 3.14159 -0.959493 -0.959493\\
0.402856 2.95016 -0.903139 -0.903139\\
0.402856 2.95016 -0.903139 -0.903139\\
0.285599 3.14159 -0.959493 -0.959493\\
0.18516 2.96884 -0.968277 -0.968277\\
0 2.85599 -0.959493 -0.959493\\
0 2.57039 -0.841254 -0.841254\\
0.238452 2.756 -0.900357 -0.900357\\
0.942478 0 0.587785 0.587785\\
1.25664 0 0.309017 0.309017\\
1.07568 0.270003 0.457921 0.457921\\
1.5708 0 6.12323e-17 6.12323e-17\\
1.88496 0 -0.309017 -0.309017\\
1.71157 0.277509 -0.134937 -0.134937\\
2.05257 0.261101 -0.447649 -0.447649\\
2.19911 0 -0.587785 -0.587785\\
2.29759 0.183582 -0.653311 -0.653311\\
1.428 3.14159 -0.142315 -0.142315\\
1.1424 3.14159 -0.415415 -0.415415\\
1.28589 2.84196 -0.268549 -0.268549\\
0.238452 2.756 -0.900357 -0.900357\\
0 2.57039 -0.841254 -0.841254\\
0.332201 2.45391 -0.730471 -0.730471\\
0 0 1 1\\
0.314159 0 0.951057 0.951057\\
0.203858 0.191401 0.96141 0.96141\\
0.332201 2.45391 -0.730471 -0.730471\\
0 2.28479 -0.654861 -0.654861\\
0.284879 2.11054 -0.493206 -0.493206\\
0 1.9992 -0.415415 -0.415415\\
0 1.7136 -0.142315 -0.142315\\
0.252415 1.81533 -0.234437 -0.234437\\
0.252415 1.81533 -0.234437 -0.234437\\
0 1.7136 -0.142315 -0.142315\\
0.219245 1.54845 0.0218116 0.0218116\\
0 2.57039 -0.841254 -0.841254\\
0 2.28479 -0.654861 -0.654861\\
0.332201 2.45391 -0.730471 -0.730471\\
0.219245 1.54845 0.0218116 0.0218116\\
0 1.428 0.142315 0.142315\\
0.209545 1.30298 0.258838 0.258838\\
0.788763 2.81044 -0.666434 -0.666434\\
0.856798 3.14159 -0.654861 -0.654861\\
0.62609 2.95608 -0.796421 -0.796421\\
0 1.7136 -0.142315 -0.142315\\
0 1.428 0.142315 0.142315\\
0.219245 1.54845 0.0218116 0.0218116\\
0 1.1424 0.415415 0.415415\\
0 0.856798 0.654861 0.654861\\
0.277277 1.03337 0.492375 0.492375\\
0 0.856798 0.654861 0.654861\\
0 0.571199 0.841254 0.841254\\
0.2854 0.706194 0.730061 0.730061\\
3.14159 0 -1 -1\\
3.14159 0.314159 -0.951057 -0.951057\\
2.93808 0.211515 -0.957536 -0.957536\\
3.14159 0.314159 -0.951057 -0.951057\\
3.14159 0.628319 -0.809017 -0.809017\\
2.90099 0.467579 -0.866948 -0.866948\\
1.88468 1.60106 0.00934317 0.00934317\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.74796 1.39211 -0.031324 -0.031324\\
2.90099 0.467579 -0.866948 -0.866948\\
3.14159 0.628319 -0.809017 -0.809017\\
2.86087 0.802994 -0.667368 -0.667368\\
0 1.428 0.142315 0.142315\\
0 1.1424 0.415415 0.415415\\
0.209545 1.30298 0.258838 0.258838\\
1.53134 1.25786 0.0121442 0.0121442\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.32384 1.41746 0.037337 0.037337\\
1.2228 1.64394 -0.0249192 -0.0249192\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.36378 1.91221 -0.0688174 -0.0688174\\
2.88214 2.68744 0.868558 0.868558\\
2.64024 2.72914 0.803395 0.803395\\
2.65231 2.48752 0.700497 0.700497\\
1.01125 1.09037 0.245316 0.245316\\
0.776915 1.23764 0.233194 0.233194\\
0.760364 0.961793 0.414499 0.414499\\
0.856798 3.14159 -0.654861 -0.654861\\
0.571199 3.14159 -0.841254 -0.841254\\
0.62609 2.95608 -0.796421 -0.796421\\
0.552839 1.35625 0.181193 0.181193\\
0.776915 1.23764 0.233194 0.233194\\
0.751613 1.50333 0.0492543 0.0492543\\
0.694319 2.51579 -0.622854 -0.622854\\
1.02589 2.6078 -0.446233 -0.446233\\
0.788763 2.81044 -0.666434 -0.666434\\
1.8936 2.55394 0.264007 0.264007\\
1.97582 2.31486 0.266878 0.266878\\
2.13453 2.50998 0.431258 0.431258\\
2.28208 1.27516 -0.190195 -0.190195\\
2.26486 0.898947 -0.398151 -0.398151\\
2.47453 1.07046 -0.376888 -0.376888\\
2.85599 3.14159 0.959493 0.959493\\
2.57039 3.14159 0.841254 0.841254\\
2.72571 2.92228 0.892848 0.892848\\
2.57039 3.14159 0.841254 0.841254\\
2.28479 3.14159 0.654861 0.654861\\
2.45055 2.88852 0.746036 0.746036\\
0 2.28479 -0.654861 -0.654861\\
0 1.9992 -0.415415 -0.415415\\
0.284879 2.11054 -0.493206 -0.493206\\
0.694319 2.51579 -0.622854 -0.622854\\
0.513077 2.73948 -0.801746 -0.801746\\
0.332201 2.45391 -0.730471 -0.730471\\
0.238452 2.756 -0.900357 -0.900357\\
0.513077 2.73948 -0.801746 -0.801746\\
0.402856 2.95016 -0.903139 -0.903139\\
0 3.14159 -1 -1\\
0 2.85599 -0.959493 -0.959493\\
0.18516 2.96884 -0.968277 -0.968277\\
0 0.571199 0.841254 0.841254\\
0 0.285599 0.959493 0.959493\\
0.238385 0.420703 0.886989 0.886989\\
0.238385 0.420703 0.886989 0.886989\\
0 0.285599 0.959493 0.959493\\
0.203858 0.191401 0.96141 0.96141\\
1.7136 3.14159 0.142315 0.142315\\
1.428 3.14159 -0.142315 -0.142315\\
1.54845 2.90869 -0.0217419 -0.0217419\\
2.64024 2.72914 0.803395 0.803395\\
2.88214 2.68744 0.868558 0.868558\\
2.72571 2.92228 0.892848 0.892848\\
0.2854 0.706194 0.730061 0.730061\\
0.476532 0.520442 0.770941 0.770941\\
0.497819 0.683772 0.681107 0.681107\\
0.628319 0 0.809017 0.809017\\
0.942478 0 0.587785 0.587785\\
0.769031 0.225061 0.700463 0.700463\\
2.72571 2.92228 0.892848 0.892848\\
2.88214 2.68744 0.868558 0.868558\\
2.94982 2.9442 0.962605 0.962605\\
2.85599 3.14159 0.959493 0.959493\\
2.72571 2.92228 0.892848 0.892848\\
2.94982 2.9442 0.962605 0.962605\\
0 2.85599 -0.959493 -0.959493\\
0.238452 2.756 -0.900357 -0.900357\\
0.18516 2.96884 -0.968277 -0.968277\\
0.238452 2.756 -0.900357 -0.900357\\
0.402856 2.95016 -0.903139 -0.903139\\
0.18516 2.96884 -0.968277 -0.968277\\
1.01125 1.09037 0.245316 0.245316\\
1.25994 1.19042 0.11356 0.11356\\
1.04184 1.39467 0.0884182 0.0884182\\
0.769031 0.225061 0.700463 0.700463\\
0.848726 0.421035 0.603218 0.603218\\
0.655458 0.412922 0.726139 0.726139\\
2.55727 0.840935 -0.556139 -0.556139\\
2.26486 0.898947 -0.398151 -0.398151\\
2.3965 0.625351 -0.595929 -0.595929\\
2.91737 2.38551 0.709316 0.709316\\
2.88214 2.68744 0.868558 0.868558\\
2.65231 2.48752 0.700497 0.700497\\
0.844986 1.96445 -0.25459 -0.25459\\
0.598757 2.20522 -0.489602 -0.489602\\
0.528616 1.90672 -0.284647 -0.284647\\
1.65362 1.89356 0.02624 0.02624\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.74709 1.73982 0.0295023 0.0295023\\
2.82743 0 -0.951057 -0.951057\\
2.93808 0.211515 -0.957536 -0.957536\\
2.68014 0.276254 -0.861458 -0.861458\\
2.15205 0.614884 -0.448505 -0.448505\\
2.26486 0.898947 -0.398151 -0.398151\\
1.97695 0.799547 -0.275383 -0.275383\\
1.1424 3.14159 -0.415415 -0.415415\\
0.856798 3.14159 -0.654861 -0.654861\\
1.01974 2.90791 -0.509357 -0.509357\\
1.28589 2.84196 -0.268549 -0.268549\\
1.02589 2.6078 -0.446233 -0.446233\\
1.29541 2.55822 -0.226943 -0.226943\\
0.238385 0.420703 0.886989 0.886989\\
0.476532 0.520442 0.770941 0.770941\\
0.2854 0.706194 0.730061 0.730061\\
0.655458 0.412922 0.726139 0.726139\\
0.848726 0.421035 0.603218 0.603218\\
0.721173 0.652325 0.596826 0.596826\\
0.694319 2.51579 -0.622854 -0.622854\\
0.598757 2.20522 -0.489602 -0.489602\\
0.911918 2.2859 -0.401438 -0.401438\\
0.277277 1.03337 0.492375 0.492375\\
0.513501 0.858917 0.569008 0.569008\\
0.544773 1.11651 0.375303 0.375303\\
2.16456 2.92592 0.54652 0.54652\\
2.03162 2.73718 0.408812 0.408812\\
2.27639 2.70011 0.586306 0.586306\\
2.06688 2.05756 0.222652 0.222652\\
1.97582 2.31486 0.266878 0.266878\\
1.80799 2.10838 0.120323 0.120323\\
2.65231 2.48752 0.700497 0.700497\\
2.64024 2.72914 0.803395 0.803395\\
2.48237 2.65757 0.69967 0.69967\\
2.64024 2.72914 0.803395 0.803395\\
2.72571 2.92228 0.892848 0.892848\\
2.45055 2.88852 0.746036 0.746036\\
0.911918 2.2859 -0.401438 -0.401438\\
1.12335 2.08716 -0.213617 -0.213617\\
1.18755 2.3446 -0.261328 -0.261328\\
0.911918 2.2859 -0.401438 -0.401438\\
0.598757 2.20522 -0.489602 -0.489602\\
0.844986 1.96445 -0.25459 -0.25459\\
0.513077 2.73948 -0.801746 -0.801746\\
0.238452 2.756 -0.900357 -0.900357\\
0.332201 2.45391 -0.730471 -0.730471\\
0.598757 2.20522 -0.489602 -0.489602\\
0.694319 2.51579 -0.622854 -0.622854\\
0.332201 2.45391 -0.730471 -0.730471\\
0.402856 2.95016 -0.903139 -0.903139\\
0.513077 2.73948 -0.801746 -0.801746\\
0.62609 2.95608 -0.796421 -0.796421\\
0.513077 2.73948 -0.801746 -0.801746\\
0.694319 2.51579 -0.622854 -0.622854\\
0.788763 2.81044 -0.666434 -0.666434\\
0.476532 0.520442 0.770941 0.770941\\
0.238385 0.420703 0.886989 0.886989\\
0.468587 0.252217 0.86398 0.86398\\
0.238385 0.420703 0.886989 0.886989\\
0.203858 0.191401 0.96141 0.96141\\
0.468587 0.252217 0.86398 0.86398\\
0.721173 0.652325 0.596826 0.596826\\
0.848726 0.421035 0.603218 0.603218\\
1.02848 0.552455 0.439344 0.439344\\
0.476532 0.520442 0.770941 0.770941\\
0.468587 0.252217 0.86398 0.86398\\
0.655458 0.412922 0.726139 0.726139\\
1.02848 0.552455 0.439344 0.439344\\
1.07568 0.270003 0.457921 0.457921\\
1.28793 0.463299 0.249684 0.249684\\
2.19911 0 -0.587785 -0.587785\\
2.51327 0 -0.809017 -0.809017\\
2.29759 0.183582 -0.653311 -0.653311\\
3.14159 1.88496 0.309017 0.309017\\
3.14159 2.19911 0.587785 0.587785\\
2.90016 1.99679 0.401239 0.401239\\
2.68014 0.276254 -0.861458 -0.861458\\
2.64653 0.572945 -0.739419 -0.739419\\
2.48873 0.426192 -0.723291 -0.723291\\
1.4181 1.04449 0.0764111 0.0764111\\
1.4479 0.839275 0.0818872 0.0818872\\
1.61798 0.999332 -0.0255109 -0.0255109\\
1.01125 1.09037 0.245316 0.245316\\
0.998701 0.816156 0.37087 0.37087\\
1.23016 0.945489 0.195558 0.195558\\
1.18755 2.3446 -0.261328 -0.261328\\
1.12335 2.08716 -0.213617 -0.213617\\
1.33272 2.16893 -0.132796 -0.132796\\
2.44881 1.75984 0.144598 0.144598\\
2.30729 1.56196 -0.00593588 -0.00593588\\
2.53146 1.49396 -0.0629107 -0.0629107\\
1.70635 2.38639 0.0984009 0.0984009\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.4362 2.37033 -0.0962205 -0.0962205\\
1.70635 2.38639 0.0984009 0.0984009\\
1.97582 2.31486 0.266878 0.266878\\
1.8936 2.55394 0.264007 0.264007\\
2.91737 2.38551 0.709316 0.709316\\
2.75292 2.22001 0.559472 0.559472\\
2.92868 2.20132 0.576255 0.576255\\
2.86087 0.802994 -0.667368 -0.667368\\
2.70484 1.07579 -0.430441 -0.430441\\
2.55727 0.840935 -0.556139 -0.556139\\
2.28208 1.27516 -0.190195 -0.190195\\
2.30729 1.56196 -0.00593588 -0.00593588\\
2.12041 1.50842 -0.0325603 -0.0325603\\
1.70635 2.38639 0.0984009 0.0984009\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.80799 2.10838 0.120323 0.120323\\
0.544773 1.11651 0.375303 0.375303\\
0.513501 0.858917 0.569008 0.569008\\
0.760364 0.961793 0.414499 0.414499\\
1.71157 0.277509 -0.134937 -0.134937\\
1.90676 0.521448 -0.285861 -0.285861\\
1.65986 0.512956 -0.0774966 -0.0774966\\
2.12041 1.50842 -0.0325603 -0.0325603\\
2.30729 1.56196 -0.00593588 -0.00593588\\
2.15113 1.7676 0.107212 0.107212\\
2.06688 2.05756 0.222652 0.222652\\
1.8863 1.86122 0.0888552 0.0888552\\
2.15113 1.7676 0.107212 0.107212\\
1.36378 1.91221 -0.0688174 -0.0688174\\
1.12335 2.08716 -0.213617 -0.213617\\
1.09998 1.85681 -0.12798 -0.12798\\
1.65362 1.89356 0.02624 0.02624\\
1.8863 1.86122 0.0888552 0.0888552\\
1.80799 2.10838 0.120323 0.120323\\
0.2854 0.706194 0.730061 0.730061\\
0.513501 0.858917 0.569008 0.569008\\
0.277277 1.03337 0.492375 0.492375\\
0.528616 1.90672 -0.284647 -0.284647\\
0.48345 1.61199 -0.036465 -0.036465\\
0.71041 1.73383 -0.123046 -0.123046\\
1.02589 2.6078 -0.446233 -0.446233\\
0.694319 2.51579 -0.622854 -0.622854\\
0.911918 2.2859 -0.401438 -0.401438\\
0.252415 1.81533 -0.234437 -0.234437\\
0.48345 1.61199 -0.036465 -0.036465\\
0.528616 1.90672 -0.284647 -0.284647\\
1.36378 1.91221 -0.0688174 -0.0688174\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.33272 2.16893 -0.132796 -0.132796\\
0.788763 2.81044 -0.666434 -0.666434\\
1.02589 2.6078 -0.446233 -0.446233\\
1.01974 2.90791 -0.509357 -0.509357\\
1.9992 3.14159 0.415415 0.415415\\
1.7136 3.14159 0.142315 0.142315\\
1.93722 2.94652 0.35148 0.35148\\
2.61484 1.99424 0.355198 0.355198\\
2.75292 2.22001 0.559472 0.559472\\
2.49721 2.24661 0.500098 0.500098\\
1.28589 2.84196 -0.268549 -0.268549\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.54845 2.90869 -0.0217419 -0.0217419\\
1.77191 2.78693 0.187327 0.187327\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.72958 2.58965 0.134636 0.134636\\
0.71041 1.73383 -0.123046 -0.123046\\
0.48345 1.61199 -0.036465 -0.036465\\
0.751613 1.50333 0.0492543 0.0492543\\
0.284879 2.11054 -0.493206 -0.493206\\
0.252415 1.81533 -0.234437 -0.234437\\
0.528616 1.90672 -0.284647 -0.284647\\
3.14159 0.628319 -0.809017 -0.809017\\
3.14159 0.942478 -0.587785 -0.587785\\
2.86087 0.802994 -0.667368 -0.667368\\
2.55727 0.840935 -0.556139 -0.556139\\
2.70484 1.07579 -0.430441 -0.430441\\
2.47453 1.07046 -0.376888 -0.376888\\
0.848726 0.421035 0.603218 0.603218\\
0.769031 0.225061 0.700463 0.700463\\
1.07568 0.270003 0.457921 0.457921\\
1.23016 0.945489 0.195558 0.195558\\
0.998701 0.816156 0.37087 0.37087\\
1.24428 0.702557 0.244791 0.244791\\
2.90099 0.467579 -0.866948 -0.866948\\
2.64653 0.572945 -0.739419 -0.739419\\
2.68014 0.276254 -0.861458 -0.861458\\
2.93808 0.211515 -0.957536 -0.957536\\
2.90099 0.467579 -0.866948 -0.866948\\
2.68014 0.276254 -0.861458 -0.861458\\
0 0.571199 0.841254 0.841254\\
0.238385 0.420703 0.886989 0.886989\\
0.2854 0.706194 0.730061 0.730061\\
0.721173 0.652325 0.596826 0.596826\\
0.998701 0.816156 0.37087 0.37087\\
0.760364 0.961793 0.414499 0.414499\\
3.14159 2.51327 0.809017 0.809017\\
2.88214 2.68744 0.868558 0.868558\\
2.91737 2.38551 0.709316 0.709316\\
2.23419 2.272 0.397274 0.397274\\
2.33687 2.01769 0.29963 0.29963\\
2.49721 2.24661 0.500098 0.500098\\
0.468587 0.252217 0.86398 0.86398\\
0.769031 0.225061 0.700463 0.700463\\
0.655458 0.412922 0.726139 0.726139\\
1.4012 0.236999 0.164066 0.164066\\
1.50669 0.418454 0.0585388 0.0585388\\
1.28793 0.463299 0.249684 0.249684\\
0.571199 3.14159 -0.841254 -0.841254\\
0.402856 2.95016 -0.903139 -0.903139\\
0.62609 2.95608 -0.796421 -0.796421\\
0.513077 2.73948 -0.801746 -0.801746\\
0.788763 2.81044 -0.666434 -0.666434\\
0.62609 2.95608 -0.796421 -0.796421\\
1.88496 0 -0.309017 -0.309017\\
2.19911 0 -0.587785 -0.587785\\
2.05257 0.261101 -0.447649 -0.447649\\
0.848726 0.421035 0.603218 0.603218\\
1.07568 0.270003 0.457921 0.457921\\
1.02848 0.552455 0.439344 0.439344\\
2.28208 1.27516 -0.190195 -0.190195\\
1.9737 1.33495 -0.09162 -0.09162\\
2.01754 1.07051 -0.207236 -0.207236\\
2.01754 1.07051 -0.207236 -0.207236\\
1.9737 1.33495 -0.09162 -0.09162\\
1.78556 1.16659 -0.0838152 -0.0838152\\
2.06688 2.05756 0.222652 0.222652\\
2.33687 2.01769 0.29963 0.29963\\
2.23419 2.272 0.397274 0.397274\\
2.48237 2.65757 0.69967 0.69967\\
2.45055 2.88852 0.746036 0.746036\\
2.27639 2.70011 0.586306 0.586306\\
1.88468 1.60106 0.00934317 0.00934317\\
1.9737 1.33495 -0.09162 -0.09162\\
2.12041 1.50842 -0.0325603 -0.0325603\\
2.47453 1.07046 -0.376888 -0.376888\\
2.70484 1.07579 -0.430441 -0.430441\\
2.56571 1.26067 -0.255959 -0.255959\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.90676 0.521448 -0.285861 -0.285861\\
1.97695 0.799547 -0.275383 -0.275383\\
2.45026 0.257156 -0.745062 -0.745062\\
2.68014 0.276254 -0.861458 -0.861458\\
2.48873 0.426192 -0.723291 -0.723291\\
1.02589 2.6078 -0.446233 -0.446233\\
0.911918 2.2859 -0.401438 -0.401438\\
1.18755 2.3446 -0.261328 -0.261328\\
1.4362 2.37033 -0.0962205 -0.0962205\\
1.18755 2.3446 -0.261328 -0.261328\\
1.33272 2.16893 -0.132796 -0.132796\\
1.2228 1.64394 -0.0249192 -0.0249192\\
0.945179 1.68237 -0.0652042 -0.0652042\\
1.04184 1.39467 0.0884182 0.0884182\\
0.844986 1.96445 -0.25459 -0.25459\\
0.945179 1.68237 -0.0652042 -0.0652042\\
1.09998 1.85681 -0.12798 -0.12798\\
2.83656 1.38478 -0.176405 -0.176405\\
2.70484 1.07579 -0.430441 -0.430441\\
2.93682 1.0928 -0.450388 -0.450388\\
2.64653 0.572945 -0.739419 -0.739419\\
2.90099 0.467579 -0.866948 -0.866948\\
2.86087 0.802994 -0.667368 -0.667368\\
3.14159 1.5708 -6.12323e-17 -6.12323e-17\\
3.14159 1.88496 0.309017 0.309017\\
2.97106 1.75571 0.181199 0.181199\\
2.83656 1.38478 -0.176405 -0.176405\\
2.74705 1.71459 0.132292 0.132292\\
2.53146 1.49396 -0.0629107 -0.0629107\\
1.04184 1.39467 0.0884182 0.0884182\\
1.25994 1.19042 0.11356 0.11356\\
1.32384 1.41746 0.037337 0.037337\\
1.65362 1.89356 0.02624 0.02624\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.36378 1.91221 -0.0688174 -0.0688174\\
2.30729 1.56196 -0.00593588 -0.00593588\\
2.28208 1.27516 -0.190195 -0.190195\\
2.53146 1.49396 -0.0629107 -0.0629107\\
2.90016 1.99679 0.401239 0.401239\\
2.75292 2.22001 0.559472 0.559472\\
2.61484 1.99424 0.355198 0.355198\\
0.721173 0.652325 0.596826 0.596826\\
0.513501 0.858917 0.569008 0.569008\\
0.497819 0.683772 0.681107 0.681107\\
0.476532 0.520442 0.770941 0.770941\\
0.655458 0.412922 0.726139 0.726139\\
0.721173 0.652325 0.596826 0.596826\\
1.04184 1.39467 0.0884182 0.0884182\\
0.945179 1.68237 -0.0652042 -0.0652042\\
0.751613 1.50333 0.0492543 0.0492543\\
1.12335 2.08716 -0.213617 -0.213617\\
0.911918 2.2859 -0.401438 -0.401438\\
0.844986 1.96445 -0.25459 -0.25459\\
2.44881 1.75984 0.144598 0.144598\\
2.33687 2.01769 0.29963 0.29963\\
2.15113 1.7676 0.107212 0.107212\\
1.88468 1.60106 0.00934317 0.00934317\\
1.8863 1.86122 0.0888552 0.0888552\\
1.74709 1.73982 0.0295023 0.0295023\\
0.598757 2.20522 -0.489602 -0.489602\\
0.332201 2.45391 -0.730471 -0.730471\\
0.284879 2.11054 -0.493206 -0.493206\\
0 1.9992 -0.415415 -0.415415\\
0.252415 1.81533 -0.234437 -0.234437\\
0.284879 2.11054 -0.493206 -0.493206\\
1.29541 2.55822 -0.226943 -0.226943\\
1.18755 2.3446 -0.261328 -0.261328\\
1.4362 2.37033 -0.0962205 -0.0962205\\
2.65231 2.48752 0.700497 0.700497\\
2.38176 2.47979 0.571903 0.571903\\
2.49721 2.24661 0.500098 0.500098\\
1.428 3.14159 -0.142315 -0.142315\\
1.28589 2.84196 -0.268549 -0.268549\\
1.54845 2.90869 -0.0217419 -0.0217419\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.77191 2.78693 0.187327 0.187327\\
1.54845 2.90869 -0.0217419 -0.0217419\\
0.277277 1.03337 0.492375 0.492375\\
0.3908 1.24602 0.295038 0.295038\\
0.209545 1.30298 0.258838 0.258838\\
0.48345 1.61199 -0.036465 -0.036465\\
0.252415 1.81533 -0.234437 -0.234437\\
0.219245 1.54845 0.0218116 0.0218116\\
0.552839 1.35625 0.181193 0.181193\\
0.3908 1.24602 0.295038 0.295038\\
0.544773 1.11651 0.375303 0.375303\\
0 0.856798 0.654861 0.654861\\
0.2854 0.706194 0.730061 0.730061\\
0.277277 1.03337 0.492375 0.492375\\
1.24428 0.702557 0.244791 0.244791\\
1.02848 0.552455 0.439344 0.439344\\
1.28793 0.463299 0.249684 0.249684\\
0.998701 0.816156 0.37087 0.37087\\
0.721173 0.652325 0.596826 0.596826\\
1.02848 0.552455 0.439344 0.439344\\
0.3908 1.24602 0.295038 0.295038\\
0.277277 1.03337 0.492375 0.492375\\
0.544773 1.11651 0.375303 0.375303\\
1.23016 0.945489 0.195558 0.195558\\
1.4479 0.839275 0.0818872 0.0818872\\
1.4181 1.04449 0.0764111 0.0764111\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.65362 1.89356 0.02624 0.02624\\
1.80799 2.10838 0.120323 0.120323\\
2.44881 1.75984 0.144598 0.144598\\
2.74705 1.71459 0.132292 0.132292\\
2.61484 1.99424 0.355198 0.355198\\
0.856798 3.14159 -0.654861 -0.654861\\
0.788763 2.81044 -0.666434 -0.666434\\
1.01974 2.90791 -0.509357 -0.509357\\
1.02589 2.6078 -0.446233 -0.446233\\
1.28589 2.84196 -0.268549 -0.268549\\
1.01974 2.90791 -0.509357 -0.509357\\
2.33687 2.01769 0.29963 0.29963\\
2.61484 1.99424 0.355198 0.355198\\
2.49721 2.24661 0.500098 0.500098\\
1.8863 1.86122 0.0888552 0.0888552\\
1.88468 1.60106 0.00934317 0.00934317\\
2.15113 1.7676 0.107212 0.107212\\
0.945179 1.68237 -0.0652042 -0.0652042\\
0.844986 1.96445 -0.25459 -0.25459\\
0.71041 1.73383 -0.123046 -0.123046\\
0.598757 2.20522 -0.489602 -0.489602\\
0.284879 2.11054 -0.493206 -0.493206\\
0.528616 1.90672 -0.284647 -0.284647\\
0.552839 1.35625 0.181193 0.181193\\
0.48345 1.61199 -0.036465 -0.036465\\
0.370964 1.41447 0.145103 0.145103\\
0.209545 1.30298 0.258838 0.258838\\
0.3908 1.24602 0.295038 0.295038\\
0.370964 1.41447 0.145103 0.145103\\
0.513501 0.858917 0.569008 0.569008\\
0.721173 0.652325 0.596826 0.596826\\
0.760364 0.961793 0.414499 0.414499\\
0.776915 1.23764 0.233194 0.233194\\
0.552839 1.35625 0.181193 0.181193\\
0.544773 1.11651 0.375303 0.375303\\
1.97582 2.31486 0.266878 0.266878\\
1.70635 2.38639 0.0984009 0.0984009\\
1.80799 2.10838 0.120323 0.120323\\
1.8863 1.86122 0.0888552 0.0888552\\
2.06688 2.05756 0.222652 0.222652\\
1.80799 2.10838 0.120323 0.120323\\
2.13453 2.50998 0.431258 0.431258\\
2.38176 2.47979 0.571903 0.571903\\
2.27639 2.70011 0.586306 0.586306\\
1.77191 2.78693 0.187327 0.187327\\
2.03162 2.73718 0.408812 0.408812\\
1.93722 2.94652 0.35148 0.35148\\
1.53134 1.25786 0.0121442 0.0121442\\
1.25994 1.19042 0.11356 0.11356\\
1.4181 1.04449 0.0764111 0.0764111\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.82024 0.954523 -0.142688 -0.142688\\
1.61798 0.999332 -0.0255109 -0.0255109\\
2.53146 1.49396 -0.0629107 -0.0629107\\
2.28208 1.27516 -0.190195 -0.190195\\
2.56571 1.26067 -0.255959 -0.255959\\
2.74705 1.71459 0.132292 0.132292\\
2.44881 1.75984 0.144598 0.144598\\
2.53146 1.49396 -0.0629107 -0.0629107\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.2228 1.64394 -0.0249192 -0.0249192\\
1.32384 1.41746 0.037337 0.037337\\
0.776915 1.23764 0.233194 0.233194\\
1.01125 1.09037 0.245316 0.245316\\
1.04184 1.39467 0.0884182 0.0884182\\
2.01754 1.07051 -0.207236 -0.207236\\
1.82024 0.954523 -0.142688 -0.142688\\
1.97695 0.799547 -0.275383 -0.275383\\
2.64653 0.572945 -0.739419 -0.739419\\
2.86087 0.802994 -0.667368 -0.667368\\
2.55727 0.840935 -0.556139 -0.556139\\
1.28793 0.463299 0.249684 0.249684\\
1.50669 0.418454 0.0585388 0.0585388\\
1.47443 0.611429 0.0787885 0.0787885\\
2.15205 0.614884 -0.448505 -0.448505\\
1.90676 0.521448 -0.285861 -0.285861\\
2.09596 0.448688 -0.451728 -0.451728\\
2.05257 0.261101 -0.447649 -0.447649\\
2.27535 0.401701 -0.596133 -0.596133\\
2.09596 0.448688 -0.451728 -0.451728\\
2.15205 0.614884 -0.448505 -0.448505\\
2.27535 0.401701 -0.596133 -0.596133\\
2.3965 0.625351 -0.595929 -0.595929\\
2.03162 2.73718 0.408812 0.408812\\
1.77191 2.78693 0.187327 0.187327\\
1.8936 2.55394 0.264007 0.264007\\
1.8936 2.55394 0.264007 0.264007\\
1.77191 2.78693 0.187327 0.187327\\
1.72958 2.58965 0.134636 0.134636\\
1.25994 1.19042 0.11356 0.11356\\
1.01125 1.09037 0.245316 0.245316\\
1.23016 0.945489 0.195558 0.195558\\
1.78556 1.16659 -0.0838152 -0.0838152\\
1.53134 1.25786 0.0121442 0.0121442\\
1.61798 0.999332 -0.0255109 -0.0255109\\
2.45026 0.257156 -0.745062 -0.745062\\
2.27535 0.401701 -0.596133 -0.596133\\
2.29759 0.183582 -0.653311 -0.653311\\
1.90676 0.521448 -0.285861 -0.285861\\
1.71157 0.277509 -0.134937 -0.134937\\
2.05257 0.261101 -0.447649 -0.447649\\
0.998701 0.816156 0.37087 0.37087\\
1.02848 0.552455 0.439344 0.439344\\
1.24428 0.702557 0.244791 0.244791\\
1.4479 0.839275 0.0818872 0.0818872\\
1.23016 0.945489 0.195558 0.195558\\
1.24428 0.702557 0.244791 0.244791\\
1.90676 0.521448 -0.285861 -0.285861\\
2.15205 0.614884 -0.448505 -0.448505\\
1.97695 0.799547 -0.275383 -0.275383\\
1.4479 0.839275 0.0818872 0.0818872\\
1.24428 0.702557 0.244791 0.244791\\
1.47443 0.611429 0.0787885 0.0787885\\
0.998701 0.816156 0.37087 0.37087\\
1.01125 1.09037 0.245316 0.245316\\
0.760364 0.961793 0.414499 0.414499\\
0.776915 1.23764 0.233194 0.233194\\
0.544773 1.11651 0.375303 0.375303\\
0.760364 0.961793 0.414499 0.414499\\
2.70484 1.07579 -0.430441 -0.430441\\
2.86087 0.802994 -0.667368 -0.667368\\
2.93682 1.0928 -0.450388 -0.450388\\
3.14159 1.25664 -0.309017 -0.309017\\
2.83656 1.38478 -0.176405 -0.176405\\
2.93682 1.0928 -0.450388 -0.450388\\
2.74705 1.71459 0.132292 0.132292\\
2.90016 1.99679 0.401239 0.401239\\
2.61484 1.99424 0.355198 0.355198\\
2.33687 2.01769 0.29963 0.29963\\
2.44881 1.75984 0.144598 0.144598\\
2.61484 1.99424 0.355198 0.355198\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.28589 2.84196 -0.268549 -0.268549\\
1.29541 2.55822 -0.226943 -0.226943\\
1.02589 2.6078 -0.446233 -0.446233\\
1.18755 2.3446 -0.261328 -0.261328\\
1.29541 2.55822 -0.226943 -0.226943\\
0.945179 1.68237 -0.0652042 -0.0652042\\
1.2228 1.64394 -0.0249192 -0.0249192\\
1.09998 1.85681 -0.12798 -0.12798\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.65362 1.89356 0.02624 0.02624\\
1.36378 1.91221 -0.0688174 -0.0688174\\
2.26486 0.898947 -0.398151 -0.398151\\
2.28208 1.27516 -0.190195 -0.190195\\
2.01754 1.07051 -0.207236 -0.207236\\
1.74796 1.39211 -0.031324 -0.031324\\
1.53134 1.25786 0.0121442 0.0121442\\
1.78556 1.16659 -0.0838152 -0.0838152\\
1.9737 1.33495 -0.09162 -0.09162\\
2.28208 1.27516 -0.190195 -0.190195\\
2.12041 1.50842 -0.0325603 -0.0325603\\
2.33687 2.01769 0.29963 0.29963\\
2.06688 2.05756 0.222652 0.222652\\
2.15113 1.7676 0.107212 0.107212\\
1.25994 1.19042 0.11356 0.11356\\
1.53134 1.25786 0.0121442 0.0121442\\
1.32384 1.41746 0.037337 0.037337\\
1.2228 1.64394 -0.0249192 -0.0249192\\
1.04184 1.39467 0.0884182 0.0884182\\
1.32384 1.41746 0.037337 0.037337\\
2.51327 0 -0.809017 -0.809017\\
2.68014 0.276254 -0.861458 -0.861458\\
2.45026 0.257156 -0.745062 -0.745062\\
2.3965 0.625351 -0.595929 -0.595929\\
2.27535 0.401701 -0.596133 -0.596133\\
2.48873 0.426192 -0.723291 -0.723291\\
1.97582 2.31486 0.266878 0.266878\\
2.06688 2.05756 0.222652 0.222652\\
2.23419 2.272 0.397274 0.397274\\
2.23419 2.272 0.397274 0.397274\\
2.38176 2.47979 0.571903 0.571903\\
2.13453 2.50998 0.431258 0.431258\\
2.30729 1.56196 -0.00593588 -0.00593588\\
2.44881 1.75984 0.144598 0.144598\\
2.15113 1.7676 0.107212 0.107212\\
1.88468 1.60106 0.00934317 0.00934317\\
2.12041 1.50842 -0.0325603 -0.0325603\\
2.15113 1.7676 0.107212 0.107212\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.70635 2.38639 0.0984009 0.0984009\\
1.4362 2.37033 -0.0962205 -0.0962205\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.29541 2.55822 -0.226943 -0.226943\\
1.4362 2.37033 -0.0962205 -0.0962205\\
1.12335 2.08716 -0.213617 -0.213617\\
1.36378 1.91221 -0.0688174 -0.0688174\\
1.33272 2.16893 -0.132796 -0.132796\\
1.55098 2.13879 -0.0106611 -0.0106611\\
1.4362 2.37033 -0.0962205 -0.0962205\\
1.33272 2.16893 -0.132796 -0.132796\\
1.71157 0.277509 -0.134937 -0.134937\\
1.50669 0.418454 0.0585388 0.0585388\\
1.4012 0.236999 0.164066 0.164066\\
1.5708 0 6.12323e-17 6.12323e-17\\
1.71157 0.277509 -0.134937 -0.134937\\
1.4012 0.236999 0.164066 0.164066\\
2.74705 1.71459 0.132292 0.132292\\
2.83656 1.38478 -0.176405 -0.176405\\
2.92413 1.60737 0.0357029 0.0357029\\
2.90016 1.99679 0.401239 0.401239\\
2.74705 1.71459 0.132292 0.132292\\
2.97106 1.75571 0.181199 0.181199\\
0.513501 0.858917 0.569008 0.569008\\
0.2854 0.706194 0.730061 0.730061\\
0.497819 0.683772 0.681107 0.681107\\
0.476532 0.520442 0.770941 0.770941\\
0.721173 0.652325 0.596826 0.596826\\
0.497819 0.683772 0.681107 0.681107\\
0.844986 1.96445 -0.25459 -0.25459\\
0.528616 1.90672 -0.284647 -0.284647\\
0.71041 1.73383 -0.123046 -0.123046\\
0.48345 1.61199 -0.036465 -0.036465\\
0.552839 1.35625 0.181193 0.181193\\
0.751613 1.50333 0.0492543 0.0492543\\
1.7136 3.14159 0.142315 0.142315\\
1.77191 2.78693 0.187327 0.187327\\
1.93722 2.94652 0.35148 0.35148\\
2.03162 2.73718 0.408812 0.408812\\
2.16456 2.92592 0.54652 0.54652\\
1.93722 2.94652 0.35148 0.35148\\
3.14159 2.19911 0.587785 0.587785\\
2.91737 2.38551 0.709316 0.709316\\
2.92868 2.20132 0.576255 0.576255\\
2.75292 2.22001 0.559472 0.559472\\
2.90016 1.99679 0.401239 0.401239\\
2.92868 2.20132 0.576255 0.576255\\
2.75292 2.22001 0.559472 0.559472\\
2.91737 2.38551 0.709316 0.709316\\
2.65231 2.48752 0.700497 0.700497\\
2.64024 2.72914 0.803395 0.803395\\
2.45055 2.88852 0.746036 0.746036\\
2.48237 2.65757 0.69967 0.69967\\
1.12335 2.08716 -0.213617 -0.213617\\
0.844986 1.96445 -0.25459 -0.25459\\
1.09998 1.85681 -0.12798 -0.12798\\
1.2228 1.64394 -0.0249192 -0.0249192\\
1.36378 1.91221 -0.0688174 -0.0688174\\
1.09998 1.85681 -0.12798 -0.12798\\
0.48345 1.61199 -0.036465 -0.036465\\
0.219245 1.54845 0.0218116 0.0218116\\
0.370964 1.41447 0.145103 0.145103\\
0 1.1424 0.415415 0.415415\\
0.277277 1.03337 0.492375 0.492375\\
0.209545 1.30298 0.258838 0.258838\\
2.45055 2.88852 0.746036 0.746036\\
2.16456 2.92592 0.54652 0.54652\\
2.27639 2.70011 0.586306 0.586306\\
2.38176 2.47979 0.571903 0.571903\\
2.65231 2.48752 0.700497 0.700497\\
2.48237 2.65757 0.69967 0.69967\\
0.3908 1.24602 0.295038 0.295038\\
0.552839 1.35625 0.181193 0.181193\\
0.370964 1.41447 0.145103 0.145103\\
0.219245 1.54845 0.0218116 0.0218116\\
0.209545 1.30298 0.258838 0.258838\\
0.370964 1.41447 0.145103 0.145103\\
1.8863 1.86122 0.0888552 0.0888552\\
1.65362 1.89356 0.02624 0.02624\\
1.74709 1.73982 0.0295023 0.0295023\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.88468 1.60106 0.00934317 0.00934317\\
1.74709 1.73982 0.0295023 0.0295023\\
2.70484 1.07579 -0.430441 -0.430441\\
2.83656 1.38478 -0.176405 -0.176405\\
2.56571 1.26067 -0.255959 -0.255959\\
2.26486 0.898947 -0.398151 -0.398151\\
2.55727 0.840935 -0.556139 -0.556139\\
2.47453 1.07046 -0.376888 -0.376888\\
2.64653 0.572945 -0.739419 -0.739419\\
2.55727 0.840935 -0.556139 -0.556139\\
2.3965 0.625351 -0.595929 -0.595929\\
2.26486 0.898947 -0.398151 -0.398151\\
2.15205 0.614884 -0.448505 -0.448505\\
2.3965 0.625351 -0.595929 -0.595929\\
1.4479 0.839275 0.0818872 0.0818872\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.61798 0.999332 -0.0255109 -0.0255109\\
1.25994 1.19042 0.11356 0.11356\\
1.23016 0.945489 0.195558 0.195558\\
1.4181 1.04449 0.0764111 0.0764111\\
1.9737 1.33495 -0.09162 -0.09162\\
1.88468 1.60106 0.00934317 0.00934317\\
1.74796 1.39211 -0.031324 -0.031324\\
1.56015 1.60612 -0.000375855 -0.000375855\\
1.53134 1.25786 0.0121442 0.0121442\\
1.74796 1.39211 -0.031324 -0.031324\\
2.38176 2.47979 0.571903 0.571903\\
2.23419 2.272 0.397274 0.397274\\
2.49721 2.24661 0.500098 0.500098\\
2.75292 2.22001 0.559472 0.559472\\
2.65231 2.48752 0.700497 0.700497\\
2.49721 2.24661 0.500098 0.500098\\
2.03162 2.73718 0.408812 0.408812\\
1.8936 2.55394 0.264007 0.264007\\
2.13453 2.50998 0.431258 0.431258\\
1.97582 2.31486 0.266878 0.266878\\
2.23419 2.272 0.397274 0.397274\\
2.13453 2.50998 0.431258 0.431258\\
1.50669 0.418454 0.0585388 0.0585388\\
1.71157 0.277509 -0.134937 -0.134937\\
1.65986 0.512956 -0.0774966 -0.0774966\\
1.90676 0.521448 -0.285861 -0.285861\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.65986 0.512956 -0.0774966 -0.0774966\\
1.82024 0.954523 -0.142688 -0.142688\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.97695 0.799547 -0.275383 -0.275383\\
2.26486 0.898947 -0.398151 -0.398151\\
2.01754 1.07051 -0.207236 -0.207236\\
1.97695 0.799547 -0.275383 -0.275383\\
1.65986 0.512956 -0.0774966 -0.0774966\\
1.70075 0.746167 -0.0951591 -0.0951591\\
1.47443 0.611429 0.0787885 0.0787885\\
1.07568 0.270003 0.457921 0.457921\\
1.4012 0.236999 0.164066 0.164066\\
1.28793 0.463299 0.249684 0.249684\\
1.82024 0.954523 -0.142688 -0.142688\\
2.01754 1.07051 -0.207236 -0.207236\\
1.78556 1.16659 -0.0838152 -0.0838152\\
1.9737 1.33495 -0.09162 -0.09162\\
1.74796 1.39211 -0.031324 -0.031324\\
1.78556 1.16659 -0.0838152 -0.0838152\\
3.14159 1.88496 0.309017 0.309017\\
2.90016 1.99679 0.401239 0.401239\\
2.97106 1.75571 0.181199 0.181199\\
2.74705 1.71459 0.132292 0.132292\\
2.92413 1.60737 0.0357029 0.0357029\\
2.97106 1.75571 0.181199 0.181199\\
2.83656 1.38478 -0.176405 -0.176405\\
2.53146 1.49396 -0.0629107 -0.0629107\\
2.56571 1.26067 -0.255959 -0.255959\\
2.28208 1.27516 -0.190195 -0.190195\\
2.47453 1.07046 -0.376888 -0.376888\\
2.56571 1.26067 -0.255959 -0.255959\\
0.776915 1.23764 0.233194 0.233194\\
1.04184 1.39467 0.0884182 0.0884182\\
0.751613 1.50333 0.0492543 0.0492543\\
0.945179 1.68237 -0.0652042 -0.0652042\\
0.71041 1.73383 -0.123046 -0.123046\\
0.751613 1.50333 0.0492543 0.0492543\\
2.27535 0.401701 -0.596133 -0.596133\\
2.05257 0.261101 -0.447649 -0.447649\\
2.29759 0.183582 -0.653311 -0.653311\\
2.51327 0 -0.809017 -0.809017\\
2.45026 0.257156 -0.745062 -0.745062\\
2.29759 0.183582 -0.653311 -0.653311\\
2.27535 0.401701 -0.596133 -0.596133\\
2.15205 0.614884 -0.448505 -0.448505\\
2.09596 0.448688 -0.451728 -0.451728\\
1.90676 0.521448 -0.285861 -0.285861\\
2.05257 0.261101 -0.447649 -0.447649\\
2.09596 0.448688 -0.451728 -0.451728\\
1.54007 2.63368 -0.0268411 -0.0268411\\
1.70635 2.38639 0.0984009 0.0984009\\
1.72958 2.58965 0.134636 0.134636\\
1.70635 2.38639 0.0984009 0.0984009\\
1.8936 2.55394 0.264007 0.264007\\
1.72958 2.58965 0.134636 0.134636\\
2.38176 2.47979 0.571903 0.571903\\
2.48237 2.65757 0.69967 0.69967\\
2.27639 2.70011 0.586306 0.586306\\
2.03162 2.73718 0.408812 0.408812\\
2.13453 2.50998 0.431258 0.431258\\
2.27639 2.70011 0.586306 0.586306\\
1.53134 1.25786 0.0121442 0.0121442\\
1.4181 1.04449 0.0764111 0.0764111\\
1.61798 0.999332 -0.0255109 -0.0255109\\
1.82024 0.954523 -0.142688 -0.142688\\
1.78556 1.16659 -0.0838152 -0.0838152\\
1.61798 0.999332 -0.0255109 -0.0255109\\
1.50669 0.418454 0.0585388 0.0585388\\
1.65986 0.512956 -0.0774966 -0.0774966\\
1.47443 0.611429 0.0787885 0.0787885\\
1.24428 0.702557 0.244791 0.244791\\
1.28793 0.463299 0.249684 0.249684\\
1.47443 0.611429 0.0787885 0.0787885\\
2.27535 0.401701 -0.596133 -0.596133\\
2.45026 0.257156 -0.745062 -0.745062\\
2.48873 0.426192 -0.723291 -0.723291\\
2.64653 0.572945 -0.739419 -0.739419\\
2.3965 0.625351 -0.595929 -0.595929\\
2.48873 0.426192 -0.723291 -0.723291\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=1\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -4,
xmax= 4,
xtick={-3.14159,-1.5708, 0,1.5708,3.14159},
xticklabels={{-pi},{-pi/2},{0},{pi/2},{pi}},
xlabel={$\text{-}\pi\text{ }\leq\text{ }\Theta\text{ }\leq\text{ }\pi$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
ylabel={$\text{sin(}\Theta\text{)}$},
axis background/.style={fill=white},
title style={font=\bfseries,align=center},
title={$\text{Plot of sin(}\Theta\text{)}$\\[1ex]subtitle\\[1ex]and here's one really long subtitle}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
-3.14159 -1.22465e-16\\
-2.84159 -0.29552\\
-2.64159 -0.479426\\
-2.54159 -0.564642\\
-2.44159 -0.644218\\
-2.34159 -0.717356\\
-2.24159 -0.783327\\
-2.14159 -0.841471\\
-2.04159 -0.891207\\
-1.94159 -0.932039\\
-1.84159 -0.963558\\
-1.74159 -0.98545\\
-1.64159 -0.997495\\
-1.54159 -0.999574\\
-1.44159 -0.991665\\
-1.34159 -0.973848\\
-1.24159 -0.9463\\
-1.14159 -0.909297\\
-1.04159 -0.863209\\
-0.941593 -0.808496\\
-0.841593 -0.745705\\
-0.741593 -0.675463\\
-0.641593 -0.598472\\
-0.441593 -0.42738\\
-0.241593 -0.239249\\
0.458407 0.44252\\
0.658407 0.611858\\
0.758407 0.687766\\
0.858407 0.756802\\
0.958407 0.818277\\
1.05841 0.871576\\
1.15841 0.916166\\
1.25841 0.951602\\
1.35841 0.97753\\
1.45841 0.993691\\
1.55841 0.999923\\
1.65841 0.996165\\
1.75841 0.982453\\
1.85841 0.958924\\
1.95841 0.925815\\
2.05841 0.883455\\
2.15841 0.832267\\
2.25841 0.772764\\
2.35841 0.70554\\
2.45841 0.631267\\
2.55841 0.550686\\
2.75841 0.373877\\
2.95841 0.182163\\
3.05841 0.0830894\\
};
\node[right, align=left, text=black]
at (axis cs:-0.785,-0.707) {$\leftarrow\text{ sin(-}\pi\div\text{4)}$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -3,
xmax= 3,
tick align=outside,
xlabel={x},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -3,
ymax= 3,
ylabel={y},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -10,
zmax= 5,
zlabel={z},
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
shader=flat corner,fill=white,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(1,0,0); rgb(10pt)=(1,0.9375,0); rgb(11pt)=(0.96875,1,0); rgb(21pt)=(0.03125,1,0); rgb(22pt)=(0,1,0.0625); rgb(32pt)=(0,1,1); rgb(42pt)=(0,0.0625,1); rgb(43pt)=(0.03125,0,1); rgb(53pt)=(0.96875,0,1); rgb(54pt)=(1,0,0.9375); rgb(63pt)=(1,0,0.09375)},mesh/rows=30]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
-3 -3 6.67128e-05 6.67128e-05\\
-3 -2.7931 0.000136151 0.000136151\\
-3 -2.58621 0.000252543 0.000252543\\
-3 -2.37931 0.000421863 0.000421863\\
-3 -2.17241 0.000620633 0.000620633\\
-3 -1.96552 0.000759417 0.000759417\\
-3 -1.75862 0.000634168 0.000634168\\
-3 -1.55172 -0.000112254 -0.000112254\\
-3 -1.34483 -0.00197025 -0.00197025\\
-3 -1.13793 -0.00543002 -0.00543002\\
-3 -0.931034 -0.0107261 -0.0107261\\
-3 -0.724138 -0.0175547 -0.0175547\\
-3 -0.517241 -0.0249472 -0.0249472\\
-3 -0.310345 -0.0314549 -0.0314549\\
-3 -0.103448 -0.0356221 -0.0356221\\
-3 0.103448 -0.0365205 -0.0365205\\
-3 0.310345 -0.0340661 -0.0340661\\
-3 0.517241 -0.0289768 -0.0289768\\
-3 0.724138 -0.0224503 -0.0224503\\
-3 0.931034 -0.0157537 -0.0157537\\
-3 1.13793 -0.00989072 -0.00989072\\
-3 1.34483 -0.00542621 -0.00542621\\
-3 1.55172 -0.00247389 -0.00247389\\
-3 1.75862 -0.000810505 -0.000810505\\
-3 1.96552 -5.12497e-05 -5.12497e-05\\
-3 2.17241 0.000187825 0.000187825\\
-3 2.37931 0.000192843 0.000192843\\
-3 2.58621 0.000129633 0.000129633\\
-3 2.7931 7.00109e-05 7.00109e-05\\
-3 3 3.22354e-05 3.22354e-05\\
-2.7931 -3 0.000188386 0.000188386\\
-2.7931 -2.7931 0.000383396 0.000383396\\
-2.7931 -2.58621 0.000712281 0.000712281\\
-2.7931 -2.37931 0.00120079 0.00120079\\
-2.7931 -2.17241 0.00180685 0.00180685\\
-2.7931 -1.96552 0.00232673 0.00232673\\
-2.7931 -1.75862 0.00226024 0.00226024\\
-2.7931 -1.55172 0.000688868 0.000688868\\
-2.7931 -1.34483 -0.00369952 -0.00369952\\
-2.7931 -1.13793 -0.0122729 -0.0122729\\
-2.7931 -0.931034 -0.0257606 -0.0257606\\
-2.7931 -0.724138 -0.0434574 -0.0434574\\
-2.7931 -0.517241 -0.0628456 -0.0628456\\
-2.7931 -0.310345 -0.0800811 -0.0800811\\
-2.7931 -0.103448 -0.0912792 -0.0912792\\
-2.7931 0.103448 -0.0939578 -0.0939578\\
-2.7931 0.310345 -0.0878636 -0.0878636\\
-2.7931 0.517241 -0.0748355 -0.0748355\\
-2.7931 0.724138 -0.0579554 -0.0579554\\
-2.7931 0.931034 -0.0405068 -0.0405068\\
-2.7931 1.13793 -0.0251405 -0.0251405\\
-2.7931 1.34483 -0.0134082 -0.0134082\\
-2.7931 1.55172 -0.0056841 -0.0056841\\
-2.7931 1.75862 -0.0014173 -0.0014173\\
-2.7931 1.96552 0.000417891 0.000417891\\
-2.7931 2.17241 0.000872457 0.000872457\\
-2.7931 2.37931 0.000736749 0.000736749\\
-2.7931 2.58621 0.000464649 0.000464649\\
-2.7931 2.7931 0.00024357 0.00024357\\
-2.7931 3 0.000110329 0.000110329\\
-2.58621 -3 0.000477409 0.000477409\\
-2.58621 -2.7931 0.000966167 0.000966167\\
-2.58621 -2.58621 0.00179322 0.00179322\\
-2.58621 -2.37931 0.00304432 0.00304432\\
-2.58621 -2.17241 0.00467374 0.00467374\\
-2.58621 -1.96552 0.0062895 0.0062895\\
-2.58621 -1.75862 0.00681228 0.00681228\\
-2.58621 -1.55172 0.00412076 0.00412076\\
-2.58621 -1.34483 -0.00497761 -0.00497761\\
-2.58621 -1.13793 -0.0239838 -0.0239838\\
-2.58621 -0.931034 -0.0549809 -0.0549809\\
-2.58621 -0.724138 -0.0965658 -0.0965658\\
-2.58621 -0.517241 -0.142804 -0.142804\\
-2.58621 -0.310345 -0.184391 -0.184391\\
-2.58621 -0.103448 -0.21186 -0.21186\\
-2.58621 0.103448 -0.219147 -0.219147\\
-2.58621 0.310345 -0.205556 -0.205556\\
-2.58621 0.517241 -0.175346 -0.175346\\
-2.58621 0.724138 -0.135695 -0.135695\\
-2.58621 0.931034 -0.0943196 -0.0943196\\
-2.58621 1.13793 -0.0576077 -0.0576077\\
-2.58621 1.34483 -0.0294841 -0.0294841\\
-2.58621 1.55172 -0.0110764 -0.0110764\\
-2.58621 1.75862 -0.00117495 -0.00117495\\
-2.58621 1.96552 0.00272461 0.00272461\\
-2.58621 2.17241 0.00327249 0.00327249\\
-2.58621 2.37931 0.00248293 0.00248293\\
-2.58621 2.58621 0.00150027 0.00150027\\
-2.58621 2.7931 0.000769592 0.000769592\\
-2.58621 3 0.000344311 0.000344311\\
-2.37931 -3 0.00107766 0.00107766\\
-2.37931 -2.7931 0.00215967 0.00215967\\
-2.37931 -2.58621 0.00399054 0.00399054\\
-2.37931 -2.37931 0.00680782 0.00680782\\
-2.37931 -2.17241 0.010655 0.010655\\
-2.37931 -1.96552 0.0149514 0.0149514\\
-2.37931 -1.75862 0.0177067 0.0177067\\
-2.37931 -1.55172 0.0145704 0.0145704\\
-2.37931 -1.34483 -0.0014926 -0.0014926\\
-2.37931 -1.13793 -0.0386915 -0.0386915\\
-2.37931 -0.931034 -0.102489 -0.102489\\
-2.37931 -0.724138 -0.190646 -0.190646\\
-2.37931 -0.517241 -0.290543 -0.290543\\
-2.37931 -0.310345 -0.381688 -0.381688\\
-2.37931 -0.103448 -0.443048 -0.443048\\
-2.37931 0.103448 -0.461124 -0.461124\\
-2.37931 0.310345 -0.434169 -0.434169\\
-2.37931 0.517241 -0.371048 -0.371048\\
-2.37931 0.724138 -0.286791 -0.286791\\
-2.37931 0.931034 -0.19778 -0.19778\\
-2.37931 1.13793 -0.118025 -0.118025\\
-2.37931 1.34483 -0.0566632 -0.0566632\\
-2.37931 1.55172 -0.0168147 -0.0168147\\
-2.37931 1.75862 0.00384432 0.00384432\\
-2.37931 1.96552 0.0109108 0.0109108\\
-2.37931 2.17241 0.010544 0.010544\\
-2.37931 2.37931 0.00748319 0.00748319\\
-2.37931 2.58621 0.00438697 0.00438697\\
-2.37931 2.7931 0.00221429 0.00221429\\
-2.37931 3 0.000981285 0.000981285\\
-2.17241 -3 0.00213944 0.00213944\\
-2.17241 -2.7931 0.00421553 0.00421553\\
-2.17241 -2.58621 0.00770966 0.00770966\\
-2.17241 -2.37931 0.0131817 0.0131817\\
-2.17241 -2.17241 0.0210604 0.0210604\\
-2.17241 -1.96552 0.0309172 0.0309172\\
-2.17241 -1.75862 0.039821 0.039821\\
-2.17241 -1.55172 0.0399972 0.0399972\\
-2.17241 -1.34483 0.0174747 0.0174747\\
-2.17241 -1.13793 -0.0453735 -0.0453735\\
-2.17241 -0.931034 -0.161702 -0.161702\\
-2.17241 -0.724138 -0.329247 -0.329247\\
-2.17241 -0.517241 -0.523945 -0.523945\\
-2.17241 -0.310345 -0.704826 -0.704826\\
-2.17241 -0.103448 -0.829367 -0.829367\\
-2.17241 0.103448 -0.870219 -0.870219\\
-2.17241 0.310345 -0.823379 -0.823379\\
-2.17241 0.517241 -0.705287 -0.705287\\
-2.17241 0.724138 -0.54404 -0.54404\\
-2.17241 0.931034 -0.370837 -0.370837\\
-2.17241 1.13793 -0.2136 -0.2136\\
-2.17241 1.34483 -0.091945 -0.091945\\
-2.17241 1.55172 -0.013785 -0.013785\\
-2.17241 1.75862 0.0246568 0.0246568\\
-2.17241 1.96552 0.0348312 0.0348312\\
-2.17241 2.17241 0.0299506 0.0299506\\
-2.17241 2.37931 0.0203255 0.0203255\\
-2.17241 2.58621 0.0116565 0.0116565\\
-2.17241 2.7931 0.00581195 0.00581195\\
-2.17241 3 0.00255673 0.00255673\\
-1.96552 -3 0.00364711 0.00364711\\
-1.96552 -2.7931 0.00696405 0.00696405\\
-1.96552 -2.58621 0.0124545 0.0124545\\
-1.96552 -2.37931 0.02124 0.02124\\
-1.96552 -2.17241 0.0348436 0.0348436\\
-1.96552 -1.96552 0.0542405 0.0542405\\
-1.96552 -1.75862 0.0767409 0.0767409\\
-1.96552 -1.55172 0.0906803 0.0906803\\
-1.96552 -1.34483 0.0712182 0.0712182\\
-1.96552 -1.13793 -0.0162974 -0.0162974\\
-1.96552 -0.931034 -0.200967 -0.200967\\
-1.96552 -0.724138 -0.483989 -0.483989\\
-1.96552 -0.517241 -0.824599 -0.824599\\
-1.96552 -0.310345 -1.14857 -1.14857\\
-1.96552 -0.103448 -1.37775 -1.37775\\
-1.96552 0.103448 -1.46178 -1.46178\\
-1.96552 0.310345 -1.39229 -1.39229\\
-1.96552 0.517241 -1.19612 -1.19612\\
-1.96552 0.724138 -0.919569 -0.919569\\
-1.96552 0.931034 -0.615573 -0.615573\\
-1.96552 1.13793 -0.334638 -0.334638\\
-1.96552 1.34483 -0.115652 -0.115652\\
-1.96552 1.55172 0.0229643 0.0229643\\
-1.96552 1.75862 0.0859995 0.0859995\\
-1.96552 1.96552 0.0949373 0.0949373\\
-1.96552 2.17241 0.0760048 0.0760048\\
-1.96552 2.37931 0.049992 0.049992\\
-1.96552 2.58621 0.0282078 0.0282078\\
-1.96552 2.7931 0.0139338 0.0139338\\
-1.96552 3 0.00609472 0.00609472\\
-1.75862 -3 0.00505826 0.00505826\\
-1.75862 -2.7931 0.00900755 0.00900755\\
-1.75862 -2.58621 0.015203 0.015203\\
-1.75862 -2.37931 0.025513 0.025513\\
-1.75862 -2.17241 0.0439216 0.0439216\\
-1.75862 -1.96552 0.0758896 0.0758896\\
-1.75862 -1.75862 0.123021 0.123021\\
-1.75862 -1.55172 0.171986 0.171986\\
-1.75862 -1.34483 0.183632 0.183632\\
-1.75862 -1.13793 0.0955643 0.0955643\\
-1.75862 -0.931034 -0.151368 -0.151368\\
-1.75862 -0.724138 -0.570832 -0.570832\\
-1.75862 -0.517241 -1.10229 -1.10229\\
-1.75862 -0.310345 -1.62408 -1.62408\\
-1.75862 -0.103448 -2.00564 -2.00564\\
-1.75862 0.103448 -2.16276 -2.16276\\
-1.75862 0.310345 -2.07949 -2.07949\\
-1.75862 0.517241 -1.79352 -1.79352\\
-1.75862 0.724138 -1.37091 -1.37091\\
-1.75862 0.931034 -0.890695 -0.890695\\
-1.75862 1.13793 -0.435815 -0.435815\\
-1.75862 1.34483 -0.0776832 -0.0776832\\
-1.75862 1.55172 0.144332 0.144332\\
-1.75862 1.75862 0.233622 0.233622\\
-1.75862 1.96552 0.227275 0.227275\\
-1.75862 2.17241 0.17364 0.17364\\
-1.75862 2.37931 0.111694 0.111694\\
-1.75862 2.58621 0.0622665 0.0622665\\
-1.75862 2.7931 0.0305407 0.0305407\\
-1.75862 3 0.0133001 0.0133001\\
-1.55172 -3 0.0047997 0.0047997\\
-1.55172 -2.7931 0.00661998 0.00661998\\
-1.55172 -2.58621 0.00821014 0.00821014\\
-1.55172 -2.37931 0.0119841 0.0119841\\
-1.55172 -2.17241 0.0265399 0.0265399\\
-1.55172 -1.96552 0.0677843 0.0677843\\
-1.55172 -1.75862 0.150734 0.150734\\
-1.55172 -1.55172 0.26826 0.26826\\
-1.55172 -1.34483 0.366546 0.366546\\
-1.55172 -1.13793 0.342596 0.342596\\
-1.55172 -0.931034 0.0858911 0.0858911\\
-1.55172 -0.724138 -0.447532 -0.447532\\
-1.55172 -0.517241 -1.18076 -1.18076\\
-1.55172 -0.310345 -1.93343 -1.93343\\
-1.55172 -0.103448 -2.50708 -2.50708\\
-1.55172 0.103448 -2.77375 -2.77375\\
-1.55172 0.310345 -2.70567 -2.70567\\
-1.55172 0.517241 -2.34654 -2.34654\\
-1.55172 0.724138 -1.77478 -1.77478\\
-1.55172 0.931034 -1.09248 -1.09248\\
-1.55172 1.13793 -0.423418 -0.423418\\
-1.55172 1.34483 0.11041 0.11041\\
-1.55172 1.55172 0.431784 0.431784\\
-1.55172 1.75862 0.536828 0.536828\\
-1.55172 1.96552 0.484818 0.484818\\
-1.55172 2.17241 0.358878 0.358878\\
-1.55172 2.37931 0.22719 0.22719\\
-1.55172 2.58621 0.125528 0.125528\\
-1.55172 2.7931 0.0612429 0.0612429\\
-1.55172 3 0.0265817 0.0265817\\
-1.34483 -3 -0.000109527 -0.000109527\\
-1.34483 -2.7931 -0.00703439 -0.00703439\\
-1.34483 -2.58621 -0.0225205 -0.0225205\\
-1.34483 -2.37931 -0.0447668 -0.0447668\\
-1.34483 -2.17241 -0.0578567 -0.0578567\\
-1.34483 -1.96552 -0.026024 -0.026024\\
-1.34483 -1.75862 0.0951086 0.0951086\\
-1.34483 -1.55172 0.320998 0.320998\\
-1.34483 -1.34483 0.589184 0.589184\\
-1.34483 -1.13793 0.743538 0.743538\\
-1.34483 -0.931034 0.594183 0.594183\\
-1.34483 -0.724138 0.0382986 0.0382986\\
-1.34483 -0.517241 -0.844708 -0.844708\\
-1.34483 -0.310345 -1.81277 -1.81277\\
-1.34483 -0.103448 -2.59036 -2.59036\\
-1.34483 0.103448 -3.00036 -3.00036\\
-1.34483 0.310345 -2.99877 -2.99877\\
-1.34483 0.517241 -2.62267 -2.62267\\
-1.34483 0.724138 -1.94227 -1.94227\\
-1.34483 0.931034 -1.06764 -1.06764\\
-1.34483 1.13793 -0.167677 -0.167677\\
-1.34483 1.34483 0.563028 0.563028\\
-1.34483 1.55172 0.985386 0.985386\\
-1.34483 1.75862 1.07801 1.07801\\
-1.34483 1.96552 0.929333 0.929333\\
-1.34483 2.17241 0.673245 0.673245\\
-1.34483 2.37931 0.421393 0.421393\\
-1.34483 2.58621 0.231328 0.231328\\
-1.34483 2.7931 0.112421 0.112421\\
-1.34483 3 0.0486745 0.0486745\\
-1.13793 -3 -0.0138121 -0.0138121\\
-1.13793 -2.7931 -0.0412596 -0.0412596\\
-1.13793 -2.58621 -0.0958708 -0.0958708\\
-1.13793 -2.37931 -0.179214 -0.179214\\
-1.13793 -2.17241 -0.265587 -0.265587\\
-1.13793 -1.96552 -0.287262 -0.287262\\
-1.13793 -1.75862 -0.148067 -0.148067\\
-1.13793 -1.55172 0.21563 0.21563\\
-1.13793 -1.34483 0.747342 0.747342\\
-1.13793 -1.13793 1.2292 1.2292\\
-1.13793 -0.931034 1.36112 1.36112\\
-1.13793 -0.724138 0.944316 0.944316\\
-1.13793 -0.517241 0.0356609 0.0356609\\
-1.13793 -0.310345 -1.06925 -1.06925\\
-1.13793 -0.103448 -2.01882 -2.01882\\
-1.13793 0.103448 -2.5885 -2.5885\\
-1.13793 0.310345 -2.71476 -2.71476\\
-1.13793 0.517241 -2.4086 -2.4086\\
-1.13793 0.724138 -1.69872 -1.69872\\
-1.13793 0.931034 -0.676222 -0.676222\\
-1.13793 1.13793 0.446108 0.446108\\
-1.13793 1.34483 1.37724 1.37724\\
-1.13793 1.55172 1.88713 1.88713\\
-1.13793 1.75862 1.92306 1.92306\\
-1.13793 1.96552 1.60948 1.60948\\
-1.13793 2.17241 1.14916 1.14916\\
-1.13793 2.37931 0.713641 0.713641\\
-1.13793 2.58621 0.389983 0.389983\\
-1.13793 2.7931 0.188999 0.188999\\
-1.13793 3 0.0816862 0.0816862\\
-0.931034 -3 -0.0402876 -0.0402876\\
-0.931034 -2.7931 -0.104773 -0.104773\\
-0.931034 -2.58621 -0.229352 -0.229352\\
-0.931034 -2.37931 -0.423598 -0.423598\\
-0.931034 -2.17241 -0.65103 -0.65103\\
-0.931034 -1.96552 -0.799873 -0.799873\\
-0.931034 -1.75862 -0.697236 -0.697236\\
-0.931034 -1.55172 -0.200291 -0.200291\\
-0.931034 -1.34483 0.662593 0.662593\\
-0.931034 -1.13793 1.6107 1.6107\\
-0.931034 -0.931034 2.2075 2.2075\\
-0.931034 -0.724138 2.12084 2.12084\\
-0.931034 -0.517241 1.35444 1.35444\\
-0.931034 -0.310345 0.240049 0.240049\\
-0.931034 -0.103448 -0.80524 -0.80524\\
-0.931034 0.103448 -1.51829 -1.51829\\
-0.931034 0.310345 -1.81557 -1.81557\\
-0.931034 0.517241 -1.66116 -1.66116\\
-0.931034 0.724138 -1.00495 -1.00495\\
-0.931034 0.931034 0.112565 0.112565\\
-0.931034 1.13793 1.43968 1.43968\\
-0.931034 1.34483 2.56714 2.56714\\
-0.931034 1.55172 3.14557 3.14557\\
-0.931034 1.75862 3.07692 3.07692\\
-0.931034 1.96552 2.52797 2.52797\\
-0.931034 2.17241 1.78803 1.78803\\
-0.931034 2.37931 1.10464 1.10464\\
-0.931034 2.58621 0.601823 0.601823\\
-0.931034 2.7931 0.291121 0.291121\\
-0.931034 3 0.125675 0.125675\\
-0.724138 -3 -0.0810357 -0.0810357\\
-0.724138 -2.7931 -0.200475 -0.200475\\
-0.724138 -2.58621 -0.428454 -0.428454\\
-0.724138 -2.37931 -0.788453 -0.788453\\
-0.724138 -2.17241 -1.23481 -1.23481\\
-0.724138 -1.96552 -1.60391 -1.60391\\
-0.724138 -1.75862 -1.62642 -1.62642\\
-0.724138 -1.55172 -1.0527 -1.0527\\
-0.724138 -1.34483 0.141183 0.141183\\
-0.724138 -1.13793 1.62005 1.62005\\
-0.724138 -0.931034 2.79917 2.79917\\
-0.724138 -0.724138 3.18844 3.18844\\
-0.724138 -0.517241 2.71325 2.71325\\
-0.724138 -0.310345 1.72199 1.72199\\
-0.724138 -0.103448 0.681613 0.681613\\
-0.724138 0.103448 -0.118942 -0.118942\\
-0.724138 0.310345 -0.579706 -0.579706\\
-0.724138 0.517241 -0.604528 -0.604528\\
-0.724138 0.724138 -0.0381019 -0.0381019\\
-0.724138 0.931034 1.15296 1.15296\\
-0.724138 1.13793 2.68289 2.68289\\
-0.724138 1.34483 4.0104 4.0104\\
-0.724138 1.55172 4.64808 4.64808\\
-0.724138 1.75862 4.4437 4.4437\\
-0.724138 1.96552 3.61147 3.61147\\
-0.724138 2.17241 2.53999 2.53999\\
-0.724138 2.37931 1.56426 1.56426\\
-0.724138 2.58621 0.850642 0.850642\\
-0.724138 2.7931 0.411012 0.411012\\
-0.724138 3 0.177301 0.177301\\
-0.517241 -3 -0.132759 -0.132759\\
-0.517241 -2.7931 -0.320311 -0.320311\\
-0.517241 -2.58621 -0.676213 -0.676213\\
-0.517241 -2.37931 -1.24325 -1.24325\\
-0.517241 -2.17241 -1.97099 -1.97099\\
-0.517241 -1.96552 -2.64473 -2.64473\\
-0.517241 -1.75862 -2.89303 -2.89303\\
-0.517241 -1.55172 -2.34663 -2.34663\\
-0.517241 -1.34483 -0.911525 -0.911525\\
-0.517241 -1.13793 1.04009 1.04009\\
-0.517241 -0.931034 2.78655 2.78655\\
-0.517241 -0.724138 3.6812 3.6812\\
-0.517241 -0.517241 3.5628 3.5628\\
-0.517241 -0.310345 2.78199 2.78199\\
-0.517241 -0.103448 1.83985 1.83985\\
-0.517241 0.103448 1.0384 1.0384\\
-0.517241 0.310345 0.486622 0.486622\\
-0.517241 0.517241 0.338968 0.338968\\
-0.517241 0.724138 0.857835 0.857835\\
-0.517241 0.931034 2.15361 2.15361\\
-0.517241 1.13793 3.90884 3.90884\\
-0.517241 1.34483 5.45144 5.45144\\
-0.517241 1.55172 6.15682 6.15682\\
-0.517241 1.75862 5.81978 5.81978\\
-0.517241 1.96552 4.70378 4.70378\\
-0.517241 2.17241 3.29858 3.29858\\
-0.517241 2.37931 2.0281 2.0281\\
-0.517241 2.58621 1.10181 1.10181\\
-0.517241 2.7931 0.532051 0.532051\\
-0.517241 3 0.229426 0.229426\\
-0.310345 -3 -0.186658 -0.186658\\
-0.310345 -2.7931 -0.443828 -0.443828\\
-0.310345 -2.58621 -0.930362 -0.930362\\
-0.310345 -2.37931 -1.71075 -1.71075\\
-0.310345 -2.17241 -2.73589 -2.73589\\
-0.310345 -1.96552 -3.75111 -3.75111\\
-0.310345 -1.75862 -4.29729 -4.29729\\
-0.310345 -1.55172 -3.89607 -3.89607\\
-0.310345 -1.34483 -2.37968 -2.37968\\
-0.310345 -1.13793 -0.133483 -0.133483\\
-0.310345 -0.931034 2.0214 2.0214\\
-0.310345 -0.724138 3.31521 3.31521\\
-0.310345 -0.517241 3.51332 3.51332\\
-0.310345 -0.310345 2.9609 2.9609\\
-0.310345 -0.103448 2.17806 2.17806\\
-0.310345 0.103448 1.46869 1.46869\\
-0.310345 0.310345 0.941198 0.941198\\
-0.310345 0.517241 0.790474 0.790474\\
-0.310345 0.724138 1.36012 1.36012\\
-0.310345 0.931034 2.81831 2.81831\\
-0.310345 1.13793 4.81839 4.81839\\
-0.310345 1.34483 6.5803 6.5803\\
-0.310345 1.55172 7.3687 7.3687\\
-0.310345 1.75862 6.93835 6.93835\\
-0.310345 1.96552 5.59703 5.59703\\
-0.310345 2.17241 3.92093 3.92093\\
-0.310345 2.37931 2.40934 2.40934\\
-0.310345 2.58621 1.30847 1.30847\\
-0.310345 2.7931 0.631707 0.631707\\
-0.310345 3 0.272361 0.272361\\
-0.103448 -3 -0.230497 -0.230497\\
-0.103448 -2.7931 -0.543026 -0.543026\\
-0.103448 -2.58621 -1.13332 -1.13332\\
-0.103448 -2.37931 -2.08498 -2.08498\\
-0.103448 -2.17241 -3.35581 -3.35581\\
-0.103448 -1.96552 -4.67095 -4.67095\\
-0.103448 -1.75862 -5.51724 -5.51724\\
-0.103448 -1.55172 -5.34192 -5.34192\\
-0.103448 -1.34483 -3.91637 -3.91637\\
-0.103448 -1.13793 -1.61294 -1.61294\\
-0.103448 -0.931034 0.706615 0.706615\\
-0.103448 -0.724138 2.20939 2.20939\\
-0.103448 -0.517241 2.61639 2.61639\\
-0.103448 -0.310345 2.26061 2.26061\\
-0.103448 -0.103448 1.66161 1.66161\\
-0.103448 0.103448 1.11368 1.11368\\
-0.103448 0.310345 0.715383 0.715383\\
-0.103448 0.517241 0.675978 0.675978\\
-0.103448 0.724138 1.37735 1.37735\\
-0.103448 0.931034 3.01439 3.01439\\
-0.103448 1.13793 5.22055 5.22055\\
-0.103448 1.34483 7.15452 7.15452\\
-0.103448 1.55172 8.02081 8.02081\\
-0.103448 1.75862 7.55561 7.55561\\
-0.103448 1.96552 6.09608 6.09608\\
-0.103448 2.17241 4.2709 4.2709\\
-0.103448 2.37931 2.62451 2.62451\\
-0.103448 2.58621 1.42536 1.42536\\
-0.103448 2.7931 0.688151 0.688151\\
-0.103448 3 0.2967 0.2967\\
0.103448 -3 -0.253033 -0.253033\\
0.103448 -2.7931 -0.592471 -0.592471\\
0.103448 -2.58621 -1.23294 -1.23294\\
0.103448 -2.37931 -2.26939 -2.26939\\
0.103448 -2.17241 -3.66948 -3.66948\\
0.103448 -1.96552 -5.16152 -5.16152\\
0.103448 -1.75862 -6.22327 -6.22327\\
0.103448 -1.55172 -6.2781 -6.2781\\
0.103448 -1.34483 -5.06206 -5.06206\\
0.103448 -1.13793 -2.91025 -2.91025\\
0.103448 -0.931034 -0.657326 -0.657326\\
0.103448 -0.724138 0.871784 0.871784\\
0.103448 -0.517241 1.38572 1.38572\\
0.103448 -0.310345 1.19133 1.19133\\
0.103448 -0.103448 0.778522 0.778522\\
0.103448 0.103448 0.416878 0.416878\\
0.103448 0.310345 0.188815 0.188815\\
0.103448 0.517241 0.295259 0.295259\\
0.103448 0.724138 1.11507 1.11507\\
0.103448 0.931034 2.84328 2.84328\\
0.103448 1.13793 5.11554 5.11554\\
0.103448 1.34483 7.09427 7.09427\\
0.103448 1.55172 7.98866 7.98866\\
0.103448 1.75862 7.53971 7.53971\\
0.103448 1.96552 6.08882 6.08882\\
0.103448 2.17241 4.26785 4.26785\\
0.103448 2.37931 2.62332 2.62332\\
0.103448 2.58621 1.42494 1.42494\\
0.103448 2.7931 0.688012 0.688012\\
0.103448 3 0.296658 0.296658\\
0.310345 -3 -0.248659 -0.248659\\
0.310345 -2.7931 -0.579789 -0.579789\\
0.310345 -2.58621 -1.20411 -1.20411\\
0.310345 -2.37931 -2.21688 -2.21688\\
0.310345 -2.17241 -3.59532 -3.59532\\
0.310345 -1.96552 -5.09178 -5.09178\\
0.310345 -1.75862 -6.21934 -6.21934\\
0.310345 -1.55172 -6.43 -6.43\\
0.310345 -1.34483 -5.45434 -5.45434\\
0.310345 -1.13793 -3.57168 -3.57168\\
0.310345 -0.931034 -1.52847 -1.52847\\
0.310345 -0.724138 -0.0779157 -0.0779157\\
0.310345 -0.517241 0.499702 0.499702\\
0.310345 -0.310345 0.461851 0.461851\\
0.310345 -0.103448 0.23159 0.23159\\
0.310345 0.103448 0.0352445 0.0352445\\
0.310345 0.310345 -0.06329 -0.06329\\
0.310345 0.517241 0.11751 0.11751\\
0.310345 0.724138 0.928281 0.928281\\
0.310345 0.931034 2.55334 2.55334\\
0.310345 1.13793 4.66363 4.66363\\
0.310345 1.34483 6.49481 6.49481\\
0.310345 1.55172 7.32432 7.32432\\
0.310345 1.75862 6.91684 6.91684\\
0.310345 1.96552 5.58734 5.58734\\
0.310345 2.17241 3.91688 3.91688\\
0.310345 2.37931 2.40778 2.40778\\
0.310345 2.58621 1.30791 1.30791\\
0.310345 2.7931 0.631526 0.631526\\
0.310345 3 0.272307 0.272307\\
0.517241 -3 -0.219662 -0.219662\\
0.517241 -2.7931 -0.510689 -0.510689\\
0.517241 -2.58621 -1.05895 -1.05895\\
0.517241 -2.37931 -1.94925 -1.94925\\
0.517241 -2.17241 -3.16566 -3.16566\\
0.517241 -1.96552 -4.49859 -4.49859\\
0.517241 -1.75862 -5.52973 -5.52973\\
0.517241 -1.55172 -5.7811 -5.7811\\
0.517241 -1.34483 -5.00348 -5.00348\\
0.517241 -1.13793 -3.41064 -3.41064\\
0.517241 -0.931034 -1.61915 -1.61915\\
0.517241 -0.724138 -0.267611 -0.267611\\
0.517241 -0.517241 0.386059 0.386059\\
0.517241 -0.310345 0.525019 0.525019\\
0.517241 -0.103448 0.470901 0.470901\\
0.517241 0.103448 0.389923 0.389923\\
0.517241 0.310345 0.328602 0.328602\\
0.517241 0.517241 0.449405 0.449405\\
0.517241 0.724138 1.06783 1.06783\\
0.517241 0.931034 2.36118 2.36118\\
0.517241 1.13793 4.06933 4.06933\\
0.517241 1.34483 5.55743 5.55743\\
0.517241 1.55172 6.21865 6.21865\\
0.517241 1.75862 5.85216 5.85216\\
0.517241 1.96552 4.71913 4.71913\\
0.517241 2.17241 3.3052 3.3052\\
0.517241 2.37931 2.03071 2.03071\\
0.517241 2.58621 1.10275 1.10275\\
0.517241 2.7931 0.532361 0.532361\\
0.517241 3 0.22952 0.22952\\
0.724138 -3 -0.174865 -0.174865\\
0.724138 -2.7931 -0.405717 -0.405717\\
0.724138 -2.58621 -0.840118 -0.840118\\
0.724138 -2.37931 -1.54517 -1.54517\\
0.724138 -2.17241 -2.50849 -2.50849\\
0.724138 -1.96552 -3.56432 -3.56432\\
0.724138 -1.75862 -4.37987 -4.37987\\
0.724138 -1.55172 -4.5699 -4.5699\\
0.724138 -1.34483 -3.92222 -3.92222\\
0.724138 -1.13793 -2.58496 -2.58496\\
0.724138 -0.931034 -1.02867 -1.02867\\
0.724138 -0.724138 0.240491 0.240491\\
0.724138 -0.517241 0.990297 0.990297\\
0.724138 -0.310345 1.31574 1.31574\\
0.724138 -0.103448 1.41913 1.41913\\
0.724138 0.103448 1.39878 1.39878\\
0.724138 0.310345 1.28698 1.28698\\
0.724138 0.517241 1.23218 1.23218\\
0.724138 0.724138 1.51748 1.51748\\
0.724138 0.931034 2.32079 2.32079\\
0.724138 1.13793 3.47133 3.47133\\
0.724138 1.34483 4.49291 4.49291\\
0.724138 1.55172 4.917 4.917\\
0.724138 1.75862 4.58058 4.58058\\
0.724138 1.96552 3.67522 3.67522\\
0.724138 2.17241 2.56718 2.56718\\
0.724138 2.37931 1.57489 1.57489\\
0.724138 2.58621 0.854455 0.854455\\
0.724138 2.7931 0.412266 0.412266\\
0.724138 3 0.177679 0.177679\\
0.931034 -3 -0.125606 -0.125606\\
0.931034 -2.7931 -0.291017 -0.291017\\
0.931034 -2.58621 -0.60175 -0.60175\\
0.931034 -2.37931 -1.10488 -1.10488\\
0.931034 -2.17241 -1.78935 -1.78935\\
0.931034 -1.96552 -2.53203 -2.53203\\
0.931034 -1.75862 -3.08664 -3.08664\\
0.931034 -1.55172 -3.16474 -3.16474\\
0.931034 -1.34483 -2.59825 -2.59825\\
0.931034 -1.13793 -1.4782 -1.4782\\
0.931034 -0.931034 -0.136462 -0.136462\\
0.931034 -0.724138 1.04996 1.04996\\
0.931034 -0.517241 1.87633 1.87633\\
0.931034 -0.310345 2.35516 2.35516\\
0.931034 -0.103448 2.57622 2.57622\\
0.931034 0.103448 2.57541 2.57541\\
0.931034 0.310345 2.37449 2.37449\\
0.931034 0.517241 2.11033 2.11033\\
0.931034 0.724138 2.03542 2.03542\\
0.931034 0.931034 2.32912 2.32912\\
0.931034 1.13793 2.90927 2.90927\\
0.931034 1.34483 3.45624 3.45624\\
0.931034 1.55172 3.63745 3.63745\\
0.931034 1.75862 3.32609 3.32609\\
0.931034 1.96552 2.64365 2.64365\\
0.931034 2.17241 1.83727 1.83727\\
0.931034 2.37931 1.12387 1.12387\\
0.931034 2.58621 0.608712 0.608712\\
0.931034 2.7931 0.293386 0.293386\\
0.931034 3 0.126358 0.126358\\
1.13793 -3 -0.0814403 -0.0814403\\
1.13793 -2.7931 -0.188504 -0.188504\\
1.13793 -2.58621 -0.389122 -0.389122\\
1.13793 -2.37931 -0.712417 -0.712417\\
1.13793 -2.17241 -1.14799 -1.14799\\
1.13793 -1.96552 -1.6097 -1.6097\\
1.13793 -1.75862 -1.92741 -1.92741\\
1.13793 -1.55172 -1.89976 -1.89976\\
1.13793 -1.34483 -1.40214 -1.40214\\
1.13793 -1.13793 -0.482425 -0.482425\\
1.13793 -0.931034 0.643099 0.643099\\
1.13793 -0.724138 1.70977 1.70977\\
1.13793 -0.517241 2.54389 2.54389\\
1.13793 -0.310345 3.09894 3.09894\\
1.13793 -0.103448 3.38012 3.38012\\
1.13793 0.103448 3.37781 3.37781\\
1.13793 0.310345 3.10636 3.10636\\
1.13793 0.517241 2.68829 2.68829\\
1.13793 0.724138 2.34179 2.34179\\
1.13793 0.931034 2.23871 2.23871\\
1.13793 1.13793 2.36582 2.36582\\
1.13793 1.34483 2.53363 2.53363\\
1.13793 1.55172 2.52508 2.52508\\
1.13793 1.75862 2.24563 2.24563\\
1.13793 1.96552 1.75905 1.75905\\
1.13793 2.17241 1.21277 1.21277\\
1.13793 2.37931 0.73847 0.73847\\
1.13793 2.58621 0.398875 0.398875\\
1.13793 2.7931 0.191922 0.191922\\
1.13793 3 0.0825681 0.0825681\\
1.34483 -3 -0.0476401 -0.0476401\\
1.34483 -2.7931 -0.110194 -0.110194\\
1.34483 -2.58621 -0.226969 -0.226969\\
1.34483 -2.37931 -0.413675 -0.413675\\
1.34483 -2.17241 -0.660994 -0.660994\\
1.34483 -1.96552 -0.912152 -0.912152\\
1.34483 -1.75862 -1.05728 -1.05728\\
1.34483 -1.55172 -0.96501 -0.96501\\
1.34483 -1.34483 -0.548781 -0.548781\\
1.34483 -1.13793 0.171571 0.171571\\
1.34483 -0.931034 1.06579 1.06579\\
1.34483 -0.724138 1.95877 1.95877\\
1.34483 -0.517241 2.71193 2.71193\\
1.34483 -0.310345 3.2506 3.2506\\
1.34483 -0.103448 3.53239 3.53239\\
1.34483 0.103448 3.52356 3.52356\\
1.34483 0.310345 3.23333 3.23333\\
1.34483 0.517241 2.76434 2.76434\\
1.34483 0.724138 2.29391 2.29391\\
1.34483 0.931034 1.97274 1.97274\\
1.34483 1.13793 1.82798 1.82798\\
1.34483 1.34483 1.76257 1.76257\\
1.34483 1.55172 1.64619 1.64619\\
1.34483 1.75862 1.41182 1.41182\\
1.34483 1.96552 1.08402 1.08402\\
1.34483 2.17241 0.739014 0.739014\\
1.34483 2.37931 0.447054 0.447054\\
1.34483 2.58621 0.240518 0.240518\\
1.34483 2.7931 0.115441 0.115441\\
1.34483 3 0.0495856 0.0495856\\
1.55172 -3 -0.0251064 -0.0251064\\
1.55172 -2.7931 -0.0580428 -0.0580428\\
1.55172 -2.58621 -0.119191 -0.119191\\
1.55172 -2.37931 -0.215764 -0.215764\\
1.55172 -2.17241 -0.340209 -0.340209\\
1.55172 -1.96552 -0.457366 -0.457366\\
1.55172 -1.75862 -0.500907 -0.500907\\
1.55172 -1.55172 -0.390719 -0.390719\\
1.55172 -1.34483 -0.0706056 -0.0706056\\
1.55172 -1.13793 0.454781 0.454781\\
1.55172 -0.931034 1.11298 1.11298\\
1.55172 -0.724138 1.7951 1.7951\\
1.55172 -0.517241 2.39904 2.39904\\
1.55172 -0.310345 2.84881 2.84881\\
1.55172 -0.103448 3.08714 3.08714\\
1.55172 0.103448 3.0747 3.0747\\
1.55172 0.310345 2.81719 2.81719\\
1.55172 0.517241 2.39316 2.39316\\
1.55172 0.724138 1.9353 1.9353\\
1.55172 0.931034 1.56243 1.56243\\
1.55172 1.13793 1.31586 1.31586\\
1.55172 1.34483 1.15453 1.15453\\
1.55172 1.55172 1.00649 1.00649\\
1.55172 1.75862 0.826988 0.826988\\
1.55172 1.96552 0.619227 0.619227\\
1.55172 2.17241 0.416012 0.416012\\
1.55172 2.37931 0.249479 0.249479\\
1.55172 2.58621 0.133509 0.133509\\
1.55172 2.7931 0.0638657 0.0638657\\
1.55172 3 0.0273729 0.0273729\\
1.75862 -3 -0.0118882 -0.0118882\\
1.75862 -2.7931 -0.0274717 -0.0274717\\
1.75862 -2.58621 -0.0561689 -0.0561689\\
1.75862 -2.37931 -0.100647 -0.100647\\
1.75862 -2.17241 -0.155452 -0.155452\\
1.75862 -1.96552 -0.200216 -0.200216\\
1.75862 -1.75862 -0.19756 -0.19756\\
1.75862 -1.55172 -0.101897 -0.101897\\
1.75862 -1.34483 0.120734 0.120734\\
1.75862 -1.13793 0.472005 0.472005\\
1.75862 -0.931034 0.914689 0.914689\\
1.75862 -0.724138 1.38545 1.38545\\
1.75862 -0.517241 1.81564 1.81564\\
1.75862 -0.310345 2.14384 2.14384\\
1.75862 -0.103448 2.31877 2.31877\\
1.75862 0.103448 2.3069 2.3069\\
1.75862 0.310345 2.11159 2.11159\\
1.75862 0.517241 1.78713 1.78713\\
1.75862 0.724138 1.42382 1.42382\\
1.75862 0.931034 1.10543 1.10543\\
1.75862 1.13793 0.870283 0.870283\\
1.75862 1.34483 0.705756 0.705756\\
1.75862 1.55172 0.575329 0.575329\\
1.75862 1.75862 0.451148 0.451148\\
1.75862 1.96552 0.328015 0.328015\\
1.75862 2.17241 0.216456 0.216456\\
1.75862 2.37931 0.128396 0.128396\\
1.75862 2.58621 0.0682461 0.0682461\\
1.75862 2.7931 0.0325058 0.0325058\\
1.75862 3 0.0138928 0.0138928\\
1.96552 -3 -0.0050352 -0.0050352\\
1.96552 -2.7931 -0.0116295 -0.0116295\\
1.96552 -2.58621 -0.0236258 -0.0236258\\
1.96552 -2.37931 -0.0416805 -0.0416805\\
1.96552 -2.17241 -0.0622968 -0.0622968\\
1.96552 -1.96552 -0.07449 -0.07449\\
1.96552 -1.75862 -0.0586517 -0.0586517\\
1.96552 -1.55172 0.00935948 0.00935948\\
1.96552 -1.34483 0.14855 0.14855\\
1.96552 -1.13793 0.362034 0.362034\\
1.96552 -0.931034 0.632157 0.632157\\
1.96552 -0.724138 0.924637 0.924637\\
1.96552 -0.517241 1.19761 1.19761\\
1.96552 -0.310345 1.40907 1.40907\\
1.96552 -0.103448 1.52214 1.52214\\
1.96552 0.103448 1.51324 1.51324\\
1.96552 0.310345 1.38422 1.38422\\
1.96552 0.517241 1.16886 1.16886\\
1.96552 0.724138 0.922718 0.922718\\
1.96552 0.931034 0.698602 0.698602\\
1.96552 1.13793 0.524531 0.524531\\
1.96552 1.34483 0.399423 0.399423\\
1.96552 1.55172 0.306222 0.306222\\
1.96552 1.75862 0.228927 0.228927\\
1.96552 1.96552 0.161119 0.161119\\
1.96552 2.17241 0.10413 0.10413\\
1.96552 2.37931 0.0609623 0.0609623\\
1.96552 2.58621 0.0321353 0.0321353\\
1.96552 2.7931 0.0152245 0.0152245\\
1.96552 3 0.00648404 0.00648404\\
2.17241 -3 -0.00189335 -0.00189335\\
2.17241 -2.7931 -0.00436948 -0.00436948\\
2.17241 -2.58621 -0.00878937 -0.00878937\\
2.17241 -2.37931 -0.0151276 -0.0151276\\
2.17241 -2.17241 -0.0213864 -0.0213864\\
2.17241 -1.96552 -0.0220795 -0.0220795\\
2.17241 -1.75862 -0.00766087 -0.00766087\\
2.17241 -1.55172 0.0337268 0.0337268\\
2.17241 -1.34483 0.111889 0.111889\\
2.17241 -1.13793 0.229379 0.229379\\
2.17241 -0.931034 0.378475 0.378475\\
2.17241 -0.724138 0.541994 0.541994\\
2.17241 -0.517241 0.696839 0.696839\\
2.17241 -0.310345 0.818027 0.818027\\
2.17241 -0.103448 0.882959 0.882959\\
2.17241 0.103448 0.877381 0.877381\\
2.17241 0.310345 0.802238 0.802238\\
2.17241 0.517241 0.676436 0.676436\\
2.17241 0.724138 0.530814 0.530814\\
2.17241 0.931034 0.395203 0.395203\\
2.17241 1.13793 0.286917 0.286917\\
2.17241 1.34483 0.207999 0.207999\\
2.17241 1.55172 0.151122 0.151122\\
2.17241 1.75862 0.107852 0.107852\\
2.17241 1.96552 0.0733502 0.0733502\\
2.17241 2.17241 0.0463188 0.0463188\\
2.17241 2.37931 0.0267096 0.0267096\\
2.17241 2.58621 0.0139421 0.0139421\\
2.17241 2.7931 0.00656301 0.00656301\\
2.17241 3 0.00278328 0.00278328\\
2.37931 -3 -0.000623767 -0.000623767\\
2.37931 -2.7931 -0.00143749 -0.00143749\\
2.37931 -2.58621 -0.00284481 -0.00284481\\
2.37931 -2.37931 -0.00469273 -0.00469273\\
2.37931 -2.17241 -0.00596047 -0.00596047\\
2.37931 -1.96552 -0.00412104 -0.00412104\\
2.37931 -1.75862 0.0051243 0.0051243\\
2.37931 -1.55172 0.027159 0.027159\\
2.37931 -1.34483 0.0666283 0.0666283\\
2.37931 -1.13793 0.125114 0.125114\\
2.37931 -0.931034 0.1995 0.1995\\
2.37931 -0.724138 0.281848 0.281848\\
2.37931 -0.517241 0.360638 0.360638\\
2.37931 -0.310345 0.422744 0.422744\\
2.37931 -0.103448 0.456074 0.456074\\
2.37931 0.103448 0.453063 0.453063\\
2.37931 0.310345 0.414152 0.414152\\
2.37931 0.517241 0.348869 0.348869\\
2.37931 0.724138 0.272665 0.272665\\
2.37931 0.931034 0.200672 0.200672\\
2.37931 1.13793 0.142202 0.142202\\
2.37931 1.34483 0.0992372 0.0992372\\
2.37931 1.55172 0.068882 0.068882\\
2.37931 1.75862 0.0470728 0.0470728\\
2.37931 1.96552 0.0309237 0.0309237\\
2.37931 2.17241 0.0190478 0.0190478\\
2.37931 2.37931 0.0107998 0.0107998\\
2.37931 2.58621 0.00557429 0.00557429\\
2.37931 2.7931 0.00260445 0.00260445\\
2.37931 3 0.00109897 0.00109897\\
2.58621 -3 -0.000175482 -0.000175482\\
2.58621 -2.7931 -0.000403249 -0.000403249\\
2.58621 -2.58621 -0.000774456 -0.000774456\\
2.58621 -2.37931 -0.0011738 -0.0011738\\
2.58621 -2.17241 -0.00113318 -0.00113318\\
2.58621 -1.96552 0.000417356 0.000417356\\
2.58621 -1.75862 0.00526302 0.00526302\\
2.58621 -1.55172 0.0156564 0.0156564\\
2.58621 -1.34483 0.033613 0.033613\\
2.58621 -1.13793 0.0599507 0.0599507\\
2.58621 -0.931034 0.093511 0.093511\\
2.58621 -0.724138 0.130924 0.130924\\
2.58621 -0.517241 0.166992 0.166992\\
2.58621 -0.310345 0.195572 0.195572\\
2.58621 -0.103448 0.210932 0.210932\\
2.58621 0.103448 0.209506 0.209506\\
2.58621 0.310345 0.191483 0.191483\\
2.58621 0.517241 0.161193 0.161193\\
2.58621 0.724138 0.12563 0.12563\\
2.58621 0.931034 0.0917045 0.0917045\\
2.58621 1.13793 0.0638424 0.0638424\\
2.58621 1.34483 0.0432598 0.0432598\\
2.58621 1.55172 0.0289043 0.0289043\\
2.58621 1.75862 0.0189908 0.0189908\\
2.58621 1.96552 0.0120598 0.0120598\\
2.58621 2.17241 0.00723898 0.00723898\\
2.58621 2.37931 0.00402989 0.00402989\\
2.58621 2.58621 0.00205407 0.00205407\\
2.58621 2.7931 0.00095157 0.00095157\\
2.58621 3 0.000399203 0.000399203\\
2.7931 -3 -3.96948e-05 -3.96948e-05\\
2.7931 -2.7931 -9.05965e-05 -9.05965e-05\\
2.7931 -2.58621 -0.000162474 -0.000162474\\
2.7931 -2.37931 -0.000194303 -0.000194303\\
2.7931 -2.17241 7.19879e-06 7.19879e-06\\
2.7931 -1.96552 0.000857423 0.000857423\\
2.7931 -1.75862 0.00303841 0.00303841\\
2.7931 -1.55172 0.00741665 0.00741665\\
2.7931 -1.34483 0.0147914 0.0147914\\
2.7931 -1.13793 0.0255296 0.0255296\\
2.7931 -0.931034 0.0392344 0.0392344\\
2.7931 -0.724138 0.054595 0.054595\\
2.7931 -0.517241 0.0694876 0.0694876\\
2.7931 -0.310345 0.0813346 0.0813346\\
2.7931 -0.103448 0.0877108 0.0877108\\
2.7931 0.103448 0.0871123 0.0871123\\
2.7931 0.310345 0.0796121 0.0796121\\
2.7931 0.517241 0.0669882 0.0669882\\
2.7931 0.724138 0.052104 0.052104\\
2.7931 0.931034 0.0378074 0.0378074\\
2.7931 1.13793 0.0259752 0.0259752\\
2.7931 1.34483 0.0172027 0.0172027\\
2.7931 1.55172 0.011138 0.011138\\
2.7931 1.75862 0.00706689 0.00706689\\
2.7931 1.96552 0.00434524 0.00434524\\
2.7931 2.17241 0.00254112 0.00254112\\
2.7931 2.37931 0.00138752 0.00138752\\
2.7931 2.58621 0.000697613 0.000697613\\
2.7931 2.7931 0.000320123 0.000320123\\
2.7931 3 0.000133419 0.000133419\\
3 -3 -5.86419e-06 -5.86419e-06\\
3 -2.7931 -1.30519e-05 -1.30519e-05\\
3 -2.58621 -1.7594e-05 -1.7594e-05\\
3 -2.37931 6.93014e-06 6.93014e-06\\
3 -2.17241 0.000132566 0.000132566\\
3 -1.96552 0.000506944 0.000506944\\
3 -1.75862 0.0013693 0.0013693\\
3 -1.55172 0.00302545 0.00302545\\
3 -1.34483 0.00576477 0.00576477\\
3 -1.13793 0.00973264 0.00973264\\
3 -0.931034 0.014804 0.014804\\
3 -0.724138 0.0205119 0.0205119\\
3 -0.517241 0.0260704 0.0260704\\
3 -0.310345 0.0305058 0.0305058\\
3 -0.103448 0.0328962 0.0328962\\
3 0.103448 0.0326716 0.0326716\\
3 0.310345 0.0298578 0.0298578\\
3 0.517241 0.0251155 0.0251155\\
3 0.724138 0.0195062 0.0195062\\
3 0.931034 0.0140913 0.0140913\\
3 1.13793 0.00958498 0.00958498\\
3 1.34483 0.0062353 0.0062353\\
3 1.55172 0.00393403 0.00393403\\
3 1.75862 0.00242112 0.00242112\\
3 1.96552 0.00144462 0.00144462\\
3 2.17241 0.000823374 0.000823374\\
3 2.37931 0.000440701 0.000440701\\
3 2.58621 0.00021836 0.00021836\\
3 2.7931 9.91668e-05 9.91668e-05\\
3 3 4.10297e-05 4.10297e-05\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 7,
xlabel={time},
every outer y axis line/.append style={mycolor1},
every y tick label/.append style={font=\color{mycolor1}},
ymin= -1,
ymax= 1,
ytick={ -1, -0.5, 0, 0.5, 1},
ylabel={sin(x)},
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
0.32 0.314567\\
0.49 0.470626\\
0.63 0.589145\\
0.76 0.688921\\
0.88 0.770739\\
0.99 0.836026\\
1.09 0.886627\\
1.19 0.928369\\
1.29 0.960835\\
1.38 0.981854\\
1.47 0.994924\\
1.56 0.999942\\
1.65 0.996865\\
1.74 0.985719\\
1.83 0.966594\\
1.92 0.939645\\
2.02 0.900793\\
2.12 0.85294\\
2.22 0.796565\\
2.33 0.725384\\
2.45 0.637765\\
2.58 0.532535\\
2.73 0.400069\\
2.91 0.229528\\
3.21 -0.068354\\
3.48 -0.331985\\
3.65 -0.486787\\
3.79 -0.603918\\
3.92 -0.702146\\
4.04 -0.782336\\
4.15 -0.845984\\
4.25 -0.894989\\
4.35 -0.935053\\
4.44 -0.963131\\
4.53 -0.983413\\
4.62 -0.995735\\
4.71 -0.999997\\
4.8 -0.996165\\
4.89 -0.984269\\
4.98 -0.964405\\
5.07 -0.936736\\
5.17 -0.897111\\
5.27 -0.848522\\
5.37 -0.791455\\
5.48 -0.719572\\
5.6 -0.631267\\
5.73 -0.5254\\
5.88 -0.39235\\
6.06 -0.221337\\
6.28 -0.0031853\\
};
\end{axis}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 7,
every outer y axis line/.append style={mycolor2},
every y tick label/.append style={font=\color{mycolor2}},
ymin= -4,
ymax= 4,
ytick={-4, -2, 0, 2, 4},
ylabel={3cos(x)},
axis x line*=bottom,
axis y line*=right
]
\addplot [color=mycolor2,solid,forget plot]
table[row sep=crcr]{%
0 3\\
0.07 2.99265\\
0.14 2.97065\\
0.21 2.93409\\
0.29 2.87473\\
0.37 2.79698\\
0.46 2.68816\\
0.55 2.55757\\
0.65 2.38825\\
0.76 2.17451\\
0.88 1.91145\\
1.02 1.5701\\
1.19 1.11498\\
1.41 0.480313\\
2 -1.24844\\
2.17 -1.69196\\
2.31 -2.0211\\
2.44 -2.29145\\
2.55 -2.49016\\
2.65 -2.64475\\
2.74 -2.76132\\
2.83 -2.85554\\
2.91 -2.91991\\
2.99 -2.9656\\
3.06 -2.99002\\
3.13 -2.9998\\
3.2 -2.99488\\
3.27 -2.9753\\
3.34 -2.94115\\
3.42 -2.88448\\
3.5 -2.80937\\
3.59 -2.70342\\
3.68 -2.57558\\
3.78 -2.40914\\
3.89 -2.19832\\
4.01 -1.93813\\
4.15 -1.59963\\
4.31 -1.17485\\
4.52 -0.573613\\
5.18 1.35227\\
5.34 1.76164\\
5.48 2.08325\\
5.6 2.3267\\
5.71 2.52053\\
5.81 2.67036\\
5.9 2.78244\\
5.99 2.87198\\
6.07 2.93209\\
6.14 2.9693\\
6.21 2.99197\\
6.28 2.99998\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 500,
xlabel={Frequency (Hz)},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=0.064,
ymax=0.336,
ylabel={Time (s)},
ymajorgrids,
axis background/.style={fill=white},
title style={font=\bfseries},
title={Quadratic Chirp},
axis x line*=bottom,
axis y line*=left
]
\addplot[%
surf,
shader=flat,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=65]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y c\\
0 0.064 -69.7768\\
0 0.072 -69.5357\\
0 0.08 -71.2946\\
0 0.088 -66.8982\\
0 0.096 -76.7119\\
0 0.104 -69.4432\\
0 0.112 -69.9523\\
0 0.12 -87.5384\\
0 0.128 -91.331\\
0 0.136 -51.8252\\
0 0.144 -44.0409\\
0 0.152 -37.9343\\
0 0.16 -33.2108\\
0 0.168 -29.8663\\
0 0.176 -27.4271\\
0 0.184 -25.7595\\
0 0.192 -24.6635\\
0 0.2 -24.3481\\
0 0.208 -24.6076\\
0 0.216 -25.5418\\
0 0.224 -27.2641\\
0 0.232 -29.4558\\
0 0.24 -32.713\\
0 0.248 -37.5686\\
0 0.256 -43.1092\\
0 0.264 -50.7924\\
0 0.272 -63.0014\\
0 0.28 -62.4416\\
0 0.288 -61.224\\
0 0.296 -62.1388\\
0 0.304 -50.5327\\
0 0.312 -46.4991\\
0 0.32 -43.2477\\
0 0.328 -40.925\\
0 0.336 -40.03\\
7.8125 0.064 -66.7622\\
7.8125 0.072 -66.5206\\
7.8125 0.08 -68.278\\
7.8125 0.088 -63.8804\\
7.8125 0.096 -73.6681\\
7.8125 0.104 -66.4083\\
7.8125 0.112 -66.8932\\
7.8125 0.12 -80.143\\
7.8125 0.128 -74.6143\\
7.8125 0.136 -48.6174\\
7.8125 0.144 -40.9835\\
7.8125 0.152 -34.957\\
7.8125 0.16 -30.4056\\
7.8125 0.168 -27.0117\\
7.8125 0.176 -24.5036\\
7.8125 0.184 -22.7769\\
7.8125 0.192 -21.8683\\
7.8125 0.2 -21.4901\\
7.8125 0.208 -21.7801\\
7.8125 0.216 -22.6755\\
7.8125 0.224 -24.2338\\
7.8125 0.232 -26.6855\\
7.8125 0.24 -29.9523\\
7.8125 0.248 -34.5375\\
7.8125 0.256 -40.1022\\
7.8125 0.264 -47.6241\\
7.8125 0.272 -59.598\\
7.8125 0.28 -59.1822\\
7.8125 0.288 -56.8166\\
7.8125 0.296 -56.2816\\
7.8125 0.304 -46.4693\\
7.8125 0.312 -42.4127\\
7.8125 0.32 -39.3515\\
7.8125 0.328 -37.3951\\
7.8125 0.336 -35.8872\\
15.625 0.064 -66.7493\\
15.625 0.072 -66.506\\
15.625 0.08 -68.259\\
15.625 0.088 -63.8577\\
15.625 0.096 -73.5678\\
15.625 0.104 -66.3341\\
15.625 0.112 -66.7466\\
15.625 0.12 -75.3722\\
15.625 0.128 -68.4389\\
15.625 0.136 -48.0596\\
15.625 0.144 -40.8879\\
15.625 0.152 -35.1303\\
15.625 0.16 -30.9376\\
15.625 0.168 -27.4275\\
15.625 0.176 -24.8739\\
15.625 0.184 -23.2138\\
15.625 0.192 -22.1995\\
15.625 0.2 -21.8792\\
15.625 0.208 -22.1477\\
15.625 0.216 -23.0848\\
15.625 0.224 -24.6234\\
15.625 0.232 -27.2076\\
15.625 0.24 -30.582\\
15.625 0.248 -34.5988\\
15.625 0.256 -40.1564\\
15.625 0.264 -47.1861\\
15.625 0.272 -58.5397\\
15.625 0.28 -58.4929\\
15.625 0.288 -54.1362\\
15.625 0.296 -51.2407\\
15.625 0.304 -44.144\\
15.625 0.312 -40.0203\\
15.625 0.32 -37.2291\\
15.625 0.328 -35.3327\\
15.625 0.336 -34.1127\\
23.4375 0.064 -66.7276\\
23.4375 0.072 -66.4817\\
23.4375 0.08 -68.2274\\
23.4375 0.088 -63.8198\\
23.4375 0.096 -73.4014\\
23.4375 0.104 -66.2098\\
23.4375 0.112 -66.5015\\
23.4375 0.12 -71.9049\\
23.4375 0.128 -64.4449\\
23.4375 0.136 -47.2317\\
23.4375 0.144 -40.8494\\
23.4375 0.152 -35.6354\\
23.4375 0.16 -31.6365\\
23.4375 0.168 -28.1715\\
23.4375 0.176 -25.8153\\
23.4375 0.184 -24.2376\\
23.4375 0.192 -23.2806\\
23.4375 0.2 -22.9563\\
23.4375 0.208 -23.2339\\
23.4375 0.216 -24.0927\\
23.4375 0.224 -25.7673\\
23.4375 0.232 -27.9341\\
23.4375 0.24 -31.3672\\
23.4375 0.248 -35.0553\\
23.4375 0.256 -40.3648\\
23.4375 0.264 -46.5594\\
23.4375 0.272 -57.0628\\
23.4375 0.28 -57.4979\\
23.4375 0.288 -51.5473\\
23.4375 0.296 -46.768\\
23.4375 0.304 -41.4737\\
23.4375 0.312 -37.4293\\
23.4375 0.32 -34.7033\\
23.4375 0.328 -32.6769\\
23.4375 0.336 -31.6091\\
31.25 0.064 -66.6973\\
31.25 0.072 -66.4475\\
31.25 0.08 -68.1827\\
31.25 0.088 -63.7663\\
31.25 0.096 -73.1701\\
31.25 0.104 -66.0341\\
31.25 0.112 -66.1566\\
31.25 0.12 -69.1439\\
31.25 0.128 -61.2582\\
31.25 0.136 -46.2486\\
31.25 0.144 -40.9489\\
31.25 0.152 -36.6499\\
31.25 0.16 -32.6107\\
31.25 0.168 -29.7836\\
31.25 0.176 -27.8082\\
31.25 0.184 -26.2907\\
31.25 0.192 -25.5203\\
31.25 0.2 -25.2184\\
31.25 0.208 -25.5103\\
31.25 0.216 -26.3864\\
31.25 0.224 -27.7367\\
31.25 0.232 -29.6644\\
31.25 0.24 -32.4747\\
31.25 0.248 -36.267\\
31.25 0.256 -40.8034\\
31.25 0.264 -45.8551\\
31.25 0.272 -55.3774\\
31.25 0.28 -56.339\\
31.25 0.288 -49.3058\\
31.25 0.296 -43.2724\\
31.25 0.304 -38.8503\\
31.25 0.312 -35.0259\\
31.25 0.32 -32.2549\\
31.25 0.328 -30.4197\\
31.25 0.336 -29.1329\\
39.0625 0.064 -66.658\\
39.0625 0.072 -66.4033\\
39.0625 0.08 -68.1248\\
39.0625 0.088 -63.6968\\
39.0625 0.096 -72.8753\\
39.0625 0.104 -65.8056\\
39.0625 0.112 -65.7097\\
39.0625 0.12 -66.7566\\
39.0625 0.128 -58.4385\\
39.0625 0.136 -45.222\\
39.0625 0.144 -41.1022\\
39.0625 0.152 -37.8303\\
39.0625 0.16 -34.3371\\
39.0625 0.168 -32.9842\\
39.0625 0.176 -31.788\\
39.0625 0.184 -31.34\\
39.0625 0.192 -30.9548\\
39.0625 0.2 -31.0609\\
39.0625 0.208 -31.2149\\
39.0625 0.216 -31.5821\\
39.0625 0.224 -32.2083\\
39.0625 0.232 -33.6015\\
39.0625 0.24 -34.6501\\
39.0625 0.248 -38.115\\
39.0625 0.256 -41.3385\\
39.0625 0.264 -45.1706\\
39.0625 0.272 -53.6168\\
39.0625 0.28 -55.1317\\
39.0625 0.288 -47.3944\\
39.0625 0.296 -40.6861\\
39.0625 0.304 -36.5621\\
39.0625 0.312 -32.8947\\
39.0625 0.32 -30.1373\\
39.0625 0.328 -28.257\\
39.0625 0.336 -27.1362\\
46.875 0.064 -66.6097\\
46.875 0.072 -66.3488\\
46.875 0.08 -68.0533\\
46.875 0.088 -63.6107\\
46.875 0.096 -72.5185\\
46.875 0.104 -65.5219\\
46.875 0.112 -65.1576\\
46.875 0.12 -64.5614\\
46.875 0.128 -55.8037\\
46.875 0.136 -44.2414\\
46.875 0.144 -40.8842\\
46.875 0.152 -37.4105\\
46.875 0.16 -35.4475\\
46.875 0.168 -34.1761\\
46.875 0.176 -34.441\\
46.875 0.184 -35.6355\\
46.875 0.192 -38.302\\
46.875 0.2 -42.2687\\
46.875 0.208 -40.8342\\
46.875 0.216 -37.9372\\
46.875 0.224 -35.8854\\
46.875 0.232 -35.0433\\
46.875 0.24 -36.3372\\
46.875 0.248 -38.1485\\
46.875 0.256 -41.3553\\
46.875 0.264 -44.5643\\
46.875 0.272 -51.8667\\
46.875 0.28 -53.969\\
46.875 0.288 -45.7819\\
46.875 0.296 -38.9298\\
46.875 0.304 -34.8267\\
46.875 0.312 -31.1979\\
46.875 0.32 -28.506\\
46.875 0.328 -26.5743\\
46.875 0.336 -25.3968\\
54.6875 0.064 -66.5522\\
54.6875 0.072 -66.2838\\
54.6875 0.08 -67.9675\\
54.6875 0.088 -63.5073\\
54.6875 0.096 -72.1011\\
54.6875 0.104 -65.1803\\
54.6875 0.112 -64.4958\\
54.6875 0.12 -62.4483\\
54.6875 0.128 -53.2798\\
54.6875 0.136 -43.3587\\
54.6875 0.144 -39.7711\\
54.6875 0.152 -35.0369\\
54.6875 0.16 -32.3211\\
54.6875 0.168 -29.8625\\
54.6875 0.176 -28.3912\\
54.6875 0.184 -27.4846\\
54.6875 0.192 -26.9408\\
54.6875 0.2 -26.6626\\
54.6875 0.208 -27.0148\\
54.6875 0.216 -27.601\\
54.6875 0.224 -28.6476\\
54.6875 0.232 -30.2134\\
54.6875 0.24 -32.6303\\
54.6875 0.248 -35.3664\\
54.6875 0.256 -40.1845\\
54.6875 0.264 -44.0265\\
54.6875 0.272 -50.1954\\
54.6875 0.28 -52.9402\\
54.6875 0.288 -44.463\\
54.6875 0.296 -37.978\\
54.6875 0.304 -33.7611\\
54.6875 0.312 -30.14\\
54.6875 0.32 -27.4769\\
54.6875 0.328 -25.647\\
54.6875 0.336 -24.4738\\
62.5 0.064 -66.4852\\
62.5 0.072 -66.2079\\
62.5 0.08 -67.8669\\
62.5 0.088 -63.3858\\
62.5 0.096 -71.6242\\
62.5 0.104 -64.7775\\
62.5 0.112 -63.7174\\
62.5 0.12 -60.3456\\
62.5 0.128 -50.8494\\
62.5 0.136 -42.5642\\
62.5 0.144 -37.9835\\
62.5 0.152 -32.9341\\
62.5 0.16 -29.3204\\
62.5 0.168 -26.985\\
62.5 0.176 -24.9304\\
62.5 0.184 -23.497\\
62.5 0.192 -22.6882\\
62.5 0.2 -22.5281\\
62.5 0.208 -22.7664\\
62.5 0.216 -23.6864\\
62.5 0.224 -25.208\\
62.5 0.232 -27.3286\\
62.5 0.24 -29.5516\\
62.5 0.248 -33.1329\\
62.5 0.256 -38.3138\\
62.5 0.264 -43.4508\\
62.5 0.272 -48.6706\\
62.5 0.28 -52.1547\\
62.5 0.288 -43.4599\\
62.5 0.296 -37.8512\\
62.5 0.304 -33.4271\\
62.5 0.312 -29.869\\
62.5 0.32 -27.2144\\
62.5 0.328 -25.3551\\
62.5 0.336 -24.2036\\
70.3125 0.064 -66.4084\\
70.3125 0.072 -66.1209\\
70.3125 0.08 -67.7508\\
70.3125 0.088 -63.2449\\
70.3125 0.096 -71.0885\\
70.3125 0.104 -64.3089\\
70.3125 0.112 -62.8129\\
70.3125 0.12 -58.209\\
70.3125 0.128 -48.5294\\
70.3125 0.136 -41.7611\\
70.3125 0.144 -36.2804\\
70.3125 0.152 -32.0548\\
70.3125 0.16 -28.7112\\
70.3125 0.168 -26.3943\\
70.3125 0.176 -24.5161\\
70.3125 0.184 -23.2343\\
70.3125 0.192 -22.5111\\
70.3125 0.2 -22.215\\
70.3125 0.208 -22.5848\\
70.3125 0.216 -23.3598\\
70.3125 0.224 -24.6922\\
70.3125 0.232 -26.6905\\
70.3125 0.24 -29.1914\\
70.3125 0.248 -32.4986\\
70.3125 0.256 -36.7018\\
70.3125 0.264 -42.6592\\
70.3125 0.272 -47.365\\
70.3125 0.28 -51.7729\\
70.3125 0.288 -42.8207\\
70.3125 0.296 -38.5502\\
70.3125 0.304 -33.8973\\
70.3125 0.312 -30.5422\\
70.3125 0.32 -28.0204\\
70.3125 0.328 -26.2384\\
70.3125 0.336 -25.165\\
78.125 0.064 -66.3216\\
78.125 0.072 -66.0221\\
78.125 0.08 -67.6182\\
78.125 0.088 -63.0836\\
78.125 0.096 -70.4942\\
78.125 0.104 -63.7693\\
78.125 0.112 -61.7697\\
78.125 0.12 -56.0184\\
78.125 0.128 -46.3565\\
78.125 0.136 -40.7856\\
78.125 0.144 -35.1429\\
78.125 0.152 -32.2044\\
78.125 0.16 -30.1681\\
78.125 0.168 -28.2563\\
78.125 0.176 -27.4905\\
78.125 0.184 -27.1447\\
78.125 0.192 -27.017\\
78.125 0.2 -27.2613\\
78.125 0.208 -27.3541\\
78.125 0.216 -27.7501\\
78.125 0.224 -28.2418\\
78.125 0.232 -28.9357\\
78.125 0.24 -31.0068\\
78.125 0.248 -33.0955\\
78.125 0.256 -35.8078\\
78.125 0.264 -41.5584\\
78.125 0.272 -46.3493\\
78.125 0.28 -52.0542\\
78.125 0.288 -42.615\\
78.125 0.296 -39.7614\\
78.125 0.304 -35.2605\\
78.125 0.312 -32.4751\\
78.125 0.32 -30.4452\\
78.125 0.328 -29.0531\\
78.125 0.336 -28.1003\\
85.9375 0.064 -66.2242\\
85.9375 0.072 -65.9112\\
85.9375 0.08 -67.4681\\
85.9375 0.088 -62.9001\\
85.9375 0.096 -69.8406\\
85.9375 0.104 -63.1517\\
85.9375 0.112 -60.5723\\
85.9375 0.12 -53.7776\\
85.9375 0.128 -44.3793\\
85.9375 0.136 -39.5416\\
85.9375 0.144 -34.6149\\
85.9375 0.152 -32.0995\\
85.9375 0.16 -30.1613\\
85.9375 0.168 -29.5866\\
85.9375 0.176 -29.7713\\
85.9375 0.184 -31.1961\\
85.9375 0.192 -33.5736\\
85.9375 0.2 -35.9434\\
85.9375 0.208 -35.009\\
85.9375 0.216 -32.5562\\
85.9375 0.224 -30.9376\\
85.9375 0.232 -30.8758\\
85.9375 0.24 -31.0946\\
85.9375 0.248 -33.1764\\
85.9375 0.256 -35.6215\\
85.9375 0.264 -40.2965\\
85.9375 0.272 -45.6599\\
85.9375 0.28 -53.3853\\
85.9375 0.288 -42.9087\\
85.9375 0.296 -40.2075\\
85.9375 0.304 -37.0855\\
85.9375 0.312 -35.5681\\
85.9375 0.32 -35.0057\\
85.9375 0.328 -35.0508\\
85.9375 0.336 -35.768\\
93.75 0.064 -66.116\\
93.75 0.072 -65.7874\\
93.75 0.08 -67.2992\\
93.75 0.088 -62.6926\\
93.75 0.096 -69.1264\\
93.75 0.104 -62.4472\\
93.75 0.112 -59.2043\\
93.75 0.12 -51.5131\\
93.75 0.128 -42.6516\\
93.75 0.136 -38.1484\\
93.75 0.144 -34.2681\\
93.75 0.152 -30.8938\\
93.75 0.16 -28.2082\\
93.75 0.168 -26.517\\
93.75 0.176 -25.2126\\
93.75 0.184 -24.2871\\
93.75 0.192 -23.8416\\
93.75 0.2 -23.7339\\
93.75 0.208 -24.0889\\
93.75 0.216 -24.8144\\
93.75 0.224 -25.8996\\
93.75 0.232 -27.1948\\
93.75 0.24 -29.1918\\
93.75 0.248 -31.8774\\
93.75 0.256 -35.6061\\
93.75 0.264 -39.1685\\
93.75 0.272 -45.198\\
93.75 0.28 -55.3084\\
93.75 0.288 -43.6329\\
93.75 0.296 -38.9292\\
93.75 0.304 -36.8048\\
93.75 0.312 -35.0499\\
93.75 0.32 -34.294\\
93.75 0.328 -34.3906\\
93.75 0.336 -34.5389\\
101.562 0.064 -65.9962\\
101.562 0.072 -65.65\\
101.562 0.08 -67.1099\\
101.562 0.088 -62.4589\\
101.562 0.096 -68.3487\\
101.562 0.104 -61.6441\\
101.562 0.112 -57.6529\\
101.562 0.12 -49.2696\\
101.562 0.128 -41.2238\\
101.562 0.136 -36.8663\\
101.562 0.144 -33.4501\\
101.562 0.152 -29.971\\
101.562 0.16 -28.0671\\
101.562 0.168 -26.272\\
101.562 0.176 -25.2612\\
101.562 0.184 -24.573\\
101.562 0.192 -24.1929\\
101.562 0.2 -24.1805\\
101.562 0.208 -24.4361\\
101.562 0.216 -25.0076\\
101.562 0.224 -26.0222\\
101.562 0.232 -27.2391\\
101.562 0.24 -29.1577\\
101.562 0.248 -31.1256\\
101.562 0.256 -34.9236\\
101.562 0.264 -38.3867\\
101.562 0.272 -44.5445\\
101.562 0.28 -52.2063\\
101.562 0.288 -44.1258\\
101.562 0.296 -37.3462\\
101.562 0.304 -34.2043\\
101.562 0.312 -31.4068\\
101.562 0.32 -29.4239\\
101.562 0.328 -27.9272\\
101.562 0.336 -27.1515\\
109.375 0.064 -65.8644\\
109.375 0.072 -65.4981\\
109.375 0.08 -66.8985\\
109.375 0.088 -62.1963\\
109.375 0.096 -67.5038\\
109.375 0.104 -60.7272\\
109.375 0.112 -55.9155\\
109.375 0.12 -47.1038\\
109.375 0.128 -40.1261\\
109.375 0.136 -35.8819\\
109.375 0.144 -32.2839\\
109.375 0.152 -29.89\\
109.375 0.16 -28.4679\\
109.375 0.168 -28.1922\\
109.375 0.176 -28.6686\\
109.375 0.184 -30.7186\\
109.375 0.192 -35.6804\\
109.375 0.2 -48.1515\\
109.375 0.208 -38.6863\\
109.375 0.216 -32.6158\\
109.375 0.224 -29.9309\\
109.375 0.232 -29.4255\\
109.375 0.24 -29.6821\\
109.375 0.248 -31.3439\\
109.375 0.256 -33.7603\\
109.375 0.264 -37.9121\\
109.375 0.272 -43.1167\\
109.375 0.28 -46.4234\\
109.375 0.288 -43.0521\\
109.375 0.296 -36.578\\
109.375 0.304 -32.4753\\
109.375 0.312 -29.6399\\
109.375 0.32 -27.3796\\
109.375 0.328 -25.8039\\
109.375 0.336 -24.717\\
117.188 0.064 -65.7198\\
117.188 0.072 -65.3309\\
117.188 0.08 -66.663\\
117.188 0.088 -61.9017\\
117.188 0.096 -66.5859\\
117.188 0.104 -59.6772\\
117.188 0.112 -54.0071\\
117.188 0.12 -45.0792\\
117.188 0.128 -39.3287\\
117.188 0.136 -35.1525\\
117.188 0.144 -31.4827\\
117.188 0.152 -29.4731\\
117.188 0.16 -27.4508\\
117.188 0.168 -26.1558\\
117.188 0.176 -25.5377\\
117.188 0.184 -25.0926\\
117.188 0.192 -24.7566\\
117.188 0.2 -24.8688\\
117.188 0.208 -25.1447\\
117.188 0.216 -25.6701\\
117.188 0.224 -26.5036\\
117.188 0.232 -27.2866\\
117.188 0.24 -28.8467\\
117.188 0.248 -31.0088\\
117.188 0.256 -33.0565\\
117.188 0.264 -37.3813\\
117.188 0.272 -41.0995\\
117.188 0.28 -42.1669\\
117.188 0.288 -40.742\\
117.188 0.296 -36.6226\\
117.188 0.304 -32.6379\\
117.188 0.312 -30.187\\
117.188 0.32 -28.1695\\
117.188 0.328 -26.7201\\
117.188 0.336 -25.8436\\
125 0.064 -65.5615\\
125 0.072 -65.147\\
125 0.08 -66.4008\\
125 0.088 -61.5712\\
125 0.096 -65.5868\\
125 0.104 -58.4717\\
125 0.112 -51.9641\\
125 0.12 -43.2608\\
125 0.128 -38.6716\\
125 0.136 -34.3966\\
125 0.144 -31.1377\\
125 0.152 -28.5962\\
125 0.16 -27.2662\\
125 0.168 -26.4166\\
125 0.176 -25.9126\\
125 0.184 -25.9412\\
125 0.192 -26.3856\\
125 0.2 -26.6016\\
125 0.208 -26.7746\\
125 0.216 -26.8291\\
125 0.224 -26.8259\\
125 0.232 -27.7114\\
125 0.24 -28.6598\\
125 0.248 -30.1742\\
125 0.256 -33.018\\
125 0.264 -36.4583\\
125 0.272 -39.4373\\
125 0.28 -39.621\\
125 0.288 -38.8249\\
125 0.296 -36.6805\\
125 0.304 -34.3151\\
125 0.312 -32.5896\\
125 0.32 -31.9691\\
125 0.328 -31.9896\\
125 0.336 -32.4487\\
132.812 0.064 -65.3887\\
132.812 0.072 -64.9451\\
132.812 0.08 -66.1089\\
132.812 0.088 -61.2001\\
132.812 0.096 -64.4953\\
132.812 0.104 -57.0886\\
132.812 0.112 -49.8429\\
132.812 0.12 -41.7083\\
132.812 0.128 -37.8422\\
132.812 0.136 -33.4111\\
132.812 0.144 -30.5728\\
132.812 0.152 -28.3713\\
132.812 0.16 -27.2326\\
132.812 0.168 -26.8829\\
132.812 0.176 -27.5724\\
132.812 0.184 -28.9119\\
132.812 0.192 -31.2011\\
132.812 0.2 -32.8019\\
132.812 0.208 -31.9882\\
132.812 0.216 -29.9555\\
132.812 0.224 -28.7986\\
132.812 0.232 -28.1437\\
132.812 0.24 -28.7587\\
132.812 0.248 -30.1401\\
132.812 0.256 -32.7871\\
132.812 0.264 -35.4564\\
132.812 0.272 -38.9883\\
132.812 0.28 -38.9944\\
132.812 0.288 -38.2336\\
132.812 0.296 -36.0304\\
132.812 0.304 -34.1629\\
132.812 0.312 -32.6077\\
132.812 0.32 -32.0958\\
132.812 0.328 -32.2714\\
132.812 0.336 -33.2063\\
140.625 0.064 -65.2001\\
140.625 0.072 -64.7237\\
140.625 0.08 -65.7839\\
140.625 0.088 -60.7826\\
140.625 0.096 -63.2961\\
140.625 0.104 -55.5138\\
140.625 0.112 -47.7136\\
140.625 0.12 -40.4626\\
140.625 0.128 -36.6206\\
140.625 0.136 -32.4206\\
140.625 0.144 -29.6918\\
140.625 0.152 -28.0839\\
140.625 0.16 -26.662\\
140.625 0.168 -25.8384\\
140.625 0.176 -25.2654\\
140.625 0.184 -25.1735\\
140.625 0.192 -25.0704\\
140.625 0.2 -25.2669\\
140.625 0.208 -25.5111\\
140.625 0.216 -25.9471\\
140.625 0.224 -26.3317\\
140.625 0.232 -27.2887\\
140.625 0.24 -28.3181\\
140.625 0.248 -30.0148\\
140.625 0.256 -31.8831\\
140.625 0.264 -34.9505\\
140.625 0.272 -40.3456\\
140.625 0.28 -41.3919\\
140.625 0.288 -39.5576\\
140.625 0.296 -35.3351\\
140.625 0.304 -32.0337\\
140.625 0.312 -29.8925\\
140.625 0.32 -28.0705\\
140.625 0.328 -26.7904\\
140.625 0.336 -25.8947\\
148.438 0.064 -64.9946\\
148.438 0.072 -64.4808\\
148.438 0.08 -65.4216\\
148.438 0.088 -60.3115\\
148.438 0.096 -61.9691\\
148.438 0.104 -53.7502\\
148.438 0.112 -45.6534\\
148.438 0.12 -39.5145\\
148.438 0.128 -35.2138\\
148.438 0.136 -31.724\\
148.438 0.144 -29.1993\\
148.438 0.152 -27.4248\\
148.438 0.16 -26.6942\\
148.438 0.168 -26.7297\\
148.438 0.176 -27.9164\\
148.438 0.184 -30.1257\\
148.438 0.192 -35.7299\\
148.438 0.2 -50.7327\\
148.438 0.208 -36.4259\\
148.438 0.216 -31.1648\\
148.438 0.224 -28.9722\\
148.438 0.232 -27.9982\\
148.438 0.24 -28.305\\
148.438 0.248 -29.3709\\
148.438 0.256 -31.3321\\
148.438 0.264 -34.8547\\
148.438 0.272 -41.5117\\
148.438 0.28 -54.6865\\
148.438 0.288 -41.7694\\
148.438 0.296 -35.2204\\
148.438 0.304 -31.6876\\
148.438 0.312 -29.4904\\
148.438 0.32 -27.8257\\
148.438 0.328 -26.6067\\
148.438 0.336 -25.8644\\
156.25 0.064 -64.7707\\
156.25 0.072 -64.2143\\
156.25 0.08 -65.0168\\
156.25 0.088 -59.7773\\
156.25 0.096 -60.49\\
156.25 0.104 -51.8255\\
156.25 0.112 -43.7395\\
156.25 0.12 -38.7444\\
156.25 0.128 -34.0453\\
156.25 0.136 -31.1713\\
156.25 0.144 -28.8999\\
156.25 0.152 -27.3244\\
156.25 0.16 -26.3719\\
156.25 0.168 -25.8722\\
156.25 0.176 -25.6185\\
156.25 0.184 -25.9176\\
156.25 0.192 -26.0754\\
156.25 0.2 -26.2973\\
156.25 0.208 -26.5003\\
156.25 0.216 -26.5832\\
156.25 0.224 -26.8558\\
156.25 0.232 -27.4278\\
156.25 0.24 -28.1729\\
156.25 0.248 -29.378\\
156.25 0.256 -31.4337\\
156.25 0.264 -34.1973\\
156.25 0.272 -37.5436\\
156.25 0.28 -42.0202\\
156.25 0.288 -38.5519\\
156.25 0.296 -34.9596\\
156.25 0.304 -32.9939\\
156.25 0.312 -31.5888\\
156.25 0.32 -31.3164\\
156.25 0.328 -31.8869\\
156.25 0.336 -33.109\\
164.062 0.064 -64.5265\\
164.062 0.072 -63.9215\\
164.062 0.08 -64.5632\\
164.062 0.088 -59.1675\\
164.062 0.096 -58.8343\\
164.062 0.104 -49.7926\\
164.062 0.112 -42.0438\\
164.062 0.12 -37.886\\
164.062 0.128 -33.2995\\
164.062 0.136 -30.412\\
164.062 0.144 -28.2195\\
164.062 0.152 -26.9348\\
164.062 0.16 -26.275\\
164.062 0.168 -26.5418\\
164.062 0.176 -27.8969\\
164.062 0.184 -30.369\\
164.062 0.192 -35.8378\\
164.062 0.2 -61.4553\\
164.062 0.208 -35.4711\\
164.062 0.216 -31.0002\\
164.062 0.224 -28.6856\\
164.062 0.232 -27.8005\\
164.062 0.24 -28.015\\
164.062 0.248 -29.1759\\
164.062 0.256 -31.0083\\
164.062 0.264 -33.0585\\
164.062 0.272 -34.5965\\
164.062 0.28 -36.4771\\
164.062 0.288 -35.3357\\
164.062 0.296 -34.062\\
164.062 0.304 -32.3112\\
164.062 0.312 -30.9003\\
164.062 0.32 -30.1555\\
164.062 0.328 -29.9742\\
164.062 0.336 -30.2127\\
171.875 0.064 -64.26\\
171.875 0.072 -63.5991\\
171.875 0.08 -64.0531\\
171.875 0.088 -58.4652\\
171.875 0.096 -56.9844\\
171.875 0.104 -47.7236\\
171.875 0.112 -40.6224\\
171.875 0.12 -36.6938\\
171.875 0.128 -32.7146\\
171.875 0.136 -29.6548\\
171.875 0.144 -27.778\\
171.875 0.152 -26.597\\
171.875 0.16 -26.1563\\
171.875 0.168 -26.0065\\
171.875 0.176 -26.2111\\
171.875 0.184 -26.6852\\
171.875 0.192 -27.2235\\
171.875 0.2 -27.4994\\
171.875 0.208 -27.7258\\
171.875 0.216 -27.4663\\
171.875 0.224 -27.459\\
171.875 0.232 -27.5768\\
171.875 0.24 -27.987\\
171.875 0.248 -28.7446\\
171.875 0.256 -30.2394\\
171.875 0.264 -32.8254\\
171.875 0.272 -35.271\\
171.875 0.28 -37.2624\\
171.875 0.288 -35.9393\\
171.875 0.296 -33.8819\\
171.875 0.304 -30.9441\\
171.875 0.312 -29.058\\
171.875 0.32 -27.5733\\
171.875 0.328 -26.4097\\
171.875 0.336 -25.6515\\
179.688 0.064 -63.9689\\
179.688 0.072 -63.2435\\
179.688 0.08 -63.4763\\
179.688 0.088 -57.648\\
179.688 0.096 -54.9403\\
179.688 0.104 -45.699\\
179.688 0.112 -39.4919\\
179.688 0.12 -35.276\\
179.688 0.128 -31.8444\\
179.688 0.136 -29.1957\\
179.688 0.144 -27.5514\\
179.688 0.152 -26.5249\\
179.688 0.16 -26.0538\\
179.688 0.168 -26.574\\
179.688 0.176 -27.8605\\
179.688 0.184 -30.7107\\
179.688 0.192 -35.4155\\
179.688 0.2 -38.775\\
179.688 0.208 -34.5017\\
179.688 0.216 -30.5339\\
179.688 0.224 -28.5495\\
179.688 0.232 -27.7801\\
179.688 0.24 -27.8856\\
179.688 0.248 -28.8631\\
179.688 0.256 -30.3245\\
179.688 0.264 -33.1754\\
179.688 0.272 -39.4558\\
179.688 0.28 -56.1421\\
179.688 0.288 -41.0018\\
179.688 0.296 -34.4135\\
179.688 0.304 -31.676\\
179.688 0.312 -30.3159\\
179.688 0.32 -29.6558\\
179.688 0.328 -29.6723\\
179.688 0.336 -30.0023\\
187.5 0.064 -63.6502\\
187.5 0.072 -62.8499\\
187.5 0.08 -62.8199\\
187.5 0.088 -56.6873\\
187.5 0.096 -52.7285\\
187.5 0.104 -43.7981\\
187.5 0.112 -38.5814\\
187.5 0.12 -34.016\\
187.5 0.128 -30.8233\\
187.5 0.136 -28.6757\\
187.5 0.144 -26.9866\\
187.5 0.152 -26.1233\\
187.5 0.16 -26.0368\\
187.5 0.168 -26.2475\\
187.5 0.176 -27.2663\\
187.5 0.184 -28.3291\\
187.5 0.192 -29.6767\\
187.5 0.2 -30.4217\\
187.5 0.208 -29.6267\\
187.5 0.216 -28.9422\\
187.5 0.224 -28.1291\\
187.5 0.232 -27.7159\\
187.5 0.24 -27.8378\\
187.5 0.248 -28.4717\\
187.5 0.256 -30.164\\
187.5 0.264 -31.9107\\
187.5 0.272 -34.755\\
187.5 0.28 -36.4943\\
187.5 0.288 -35.6517\\
187.5 0.296 -33.0871\\
187.5 0.304 -31.7663\\
187.5 0.312 -30.5701\\
187.5 0.32 -30.3945\\
187.5 0.328 -31.0287\\
187.5 0.336 -32.2778\\
195.312 0.064 -63.3007\\
195.312 0.072 -62.4125\\
195.312 0.08 -62.0668\\
195.312 0.088 -55.5508\\
195.312 0.096 -50.404\\
195.312 0.104 -42.0902\\
195.312 0.112 -37.6819\\
195.312 0.12 -33.1444\\
195.312 0.128 -30.1459\\
195.312 0.136 -28.0269\\
195.312 0.144 -26.7703\\
195.312 0.152 -26.161\\
195.312 0.16 -25.9998\\
195.312 0.168 -26.7493\\
195.312 0.176 -27.6771\\
195.312 0.184 -29.2818\\
195.312 0.192 -30.9733\\
195.312 0.2 -32.0747\\
195.312 0.208 -31.0345\\
195.312 0.216 -29.6156\\
195.312 0.224 -28.5\\
195.312 0.232 -27.8847\\
195.312 0.24 -27.8334\\
195.312 0.248 -28.4318\\
195.312 0.256 -29.3749\\
195.312 0.264 -31.1084\\
195.312 0.272 -32.2751\\
195.312 0.28 -33.3879\\
195.312 0.288 -33.0597\\
195.312 0.296 -32.2665\\
195.312 0.304 -30.3984\\
195.312 0.312 -28.934\\
195.312 0.32 -27.703\\
195.312 0.328 -26.7643\\
195.312 0.336 -26.1425\\
203.125 0.064 -62.9164\\
203.125 0.072 -61.9238\\
203.125 0.08 -61.1942\\
203.125 0.088 -54.2097\\
203.125 0.096 -48.0437\\
203.125 0.104 -40.6215\\
203.125 0.112 -36.5314\\
203.125 0.12 -32.4844\\
203.125 0.128 -29.6922\\
203.125 0.136 -27.6703\\
203.125 0.144 -26.4878\\
203.125 0.152 -25.8444\\
203.125 0.16 -26.0565\\
203.125 0.168 -26.7183\\
203.125 0.176 -28.6598\\
203.125 0.184 -32.0581\\
203.125 0.192 -37.565\\
203.125 0.2 -40.8784\\
203.125 0.208 -34.9569\\
203.125 0.216 -30.8437\\
203.125 0.224 -28.8395\\
203.125 0.232 -27.8877\\
203.125 0.24 -27.7692\\
203.125 0.248 -28.3468\\
203.125 0.256 -29.6324\\
203.125 0.264 -32.2286\\
203.125 0.272 -35.9224\\
203.125 0.28 -42.1471\\
203.125 0.288 -38.3959\\
203.125 0.296 -34.037\\
203.125 0.304 -31.0995\\
203.125 0.312 -30.0384\\
203.125 0.32 -29.826\\
203.125 0.328 -30.4229\\
203.125 0.336 -31.6244\\
210.938 0.064 -62.4925\\
210.938 0.072 -61.3739\\
210.938 0.08 -60.1725\\
210.938 0.088 -52.651\\
210.938 0.096 -45.736\\
210.938 0.104 -39.3922\\
210.938 0.112 -35.1201\\
210.938 0.12 -31.6212\\
210.938 0.128 -28.9525\\
210.938 0.136 -27.2453\\
210.938 0.144 -26.1348\\
210.938 0.152 -25.9299\\
210.938 0.16 -26.1032\\
210.938 0.168 -26.9972\\
210.938 0.176 -28.2803\\
210.938 0.184 -29.8803\\
210.938 0.192 -31.5093\\
210.938 0.2 -31.6107\\
210.938 0.208 -30.9674\\
210.938 0.216 -29.8515\\
210.938 0.224 -28.7184\\
210.938 0.232 -28.0791\\
210.938 0.24 -27.8387\\
210.938 0.248 -28.1029\\
210.938 0.256 -29.3426\\
210.938 0.264 -30.775\\
210.938 0.272 -33.578\\
210.938 0.28 -35.1128\\
210.938 0.288 -34.5922\\
210.938 0.296 -32.0838\\
210.938 0.304 -30.8965\\
210.938 0.312 -29.7316\\
210.938 0.32 -29.3451\\
210.938 0.328 -29.4005\\
210.938 0.336 -29.9353\\
218.75 0.064 -62.0236\\
218.75 0.072 -60.7496\\
218.75 0.08 -58.966\\
218.75 0.088 -50.8908\\
218.75 0.096 -43.5719\\
218.75 0.104 -38.3208\\
218.75 0.112 -33.7732\\
218.75 0.12 -30.5912\\
218.75 0.128 -28.245\\
218.75 0.136 -26.7606\\
218.75 0.144 -26.0758\\
218.75 0.152 -25.7122\\
218.75 0.16 -26.2406\\
218.75 0.168 -27.4488\\
218.75 0.176 -29.145\\
218.75 0.184 -31.4026\\
218.75 0.192 -34.7494\\
218.75 0.2 -34.968\\
218.75 0.208 -32.8678\\
218.75 0.216 -30.9752\\
218.75 0.224 -29.2876\\
218.75 0.232 -28.1097\\
218.75 0.24 -27.776\\
218.75 0.248 -28.2326\\
218.75 0.256 -28.7142\\
218.75 0.264 -29.9375\\
218.75 0.272 -31.352\\
218.75 0.28 -32.0542\\
218.75 0.288 -31.9145\\
218.75 0.296 -30.9956\\
218.75 0.304 -29.8432\\
218.75 0.312 -28.8699\\
218.75 0.32 -28.0467\\
218.75 0.328 -27.5814\\
218.75 0.336 -27.2216\\
226.562 0.064 -61.5025\\
226.562 0.072 -60.0323\\
226.562 0.08 -57.5367\\
226.562 0.088 -48.9786\\
226.562 0.096 -41.6363\\
226.562 0.104 -37.2336\\
226.562 0.112 -32.7821\\
226.562 0.12 -29.8405\\
226.562 0.128 -27.9012\\
226.562 0.136 -26.5519\\
226.562 0.144 -25.7301\\
226.562 0.152 -25.8721\\
226.562 0.16 -26.3799\\
226.562 0.168 -27.5038\\
226.562 0.176 -29.984\\
226.562 0.184 -33.9258\\
226.562 0.192 -42.3527\\
226.562 0.2 -46.4095\\
226.562 0.208 -35.7589\\
226.562 0.216 -31.6087\\
226.562 0.224 -29.3821\\
226.562 0.232 -28.3513\\
226.562 0.24 -27.9084\\
226.562 0.248 -27.9119\\
226.562 0.256 -29.3177\\
226.562 0.264 -31.767\\
226.562 0.272 -35.8469\\
226.562 0.28 -52.3802\\
226.562 0.288 -40.2348\\
226.562 0.296 -34.2113\\
226.562 0.304 -31.0203\\
226.562 0.312 -30.0138\\
226.562 0.32 -30.3633\\
226.562 0.328 -31.9221\\
226.562 0.336 -36.1692\\
234.375 0.064 -60.9207\\
234.375 0.072 -59.1967\\
234.375 0.08 -55.8546\\
234.375 0.088 -46.9891\\
234.375 0.096 -39.9985\\
234.375 0.104 -35.9722\\
234.375 0.112 -32.0657\\
234.375 0.12 -29.3246\\
234.375 0.128 -27.3542\\
234.375 0.136 -26.1296\\
234.375 0.144 -25.7708\\
234.375 0.152 -25.7342\\
234.375 0.16 -26.5955\\
234.375 0.168 -28.1287\\
234.375 0.176 -30.1233\\
234.375 0.184 -33.2804\\
234.375 0.192 -35.3652\\
234.375 0.2 -36.2649\\
234.375 0.208 -34.0923\\
234.375 0.216 -31.2202\\
234.375 0.224 -29.5523\\
234.375 0.232 -28.3902\\
234.375 0.24 -27.8456\\
234.375 0.248 -28.1381\\
234.375 0.256 -28.3517\\
234.375 0.264 -29.05\\
234.375 0.272 -30.0725\\
234.375 0.28 -30.7064\\
234.375 0.288 -30.7845\\
234.375 0.296 -30.0536\\
234.375 0.304 -29.5886\\
234.375 0.312 -28.7956\\
234.375 0.32 -28.1244\\
234.375 0.328 -27.7826\\
234.375 0.336 -27.3676\\
242.188 0.064 -60.2667\\
242.188 0.072 -58.2087\\
242.188 0.08 -53.9113\\
242.188 0.088 -45.0057\\
242.188 0.096 -38.686\\
242.188 0.104 -34.5866\\
242.188 0.112 -31.2149\\
242.188 0.12 -28.5899\\
242.188 0.128 -26.8036\\
242.188 0.136 -25.9425\\
242.188 0.144 -25.5122\\
242.188 0.152 -25.9854\\
242.188 0.16 -26.8736\\
242.188 0.168 -28.6101\\
242.188 0.176 -30.8217\\
242.188 0.184 -33.5236\\
242.188 0.192 -34.7062\\
242.188 0.2 -35.3896\\
242.188 0.208 -33.917\\
242.188 0.216 -31.917\\
242.188 0.224 -30.0595\\
242.188 0.232 -28.6834\\
242.188 0.24 -28.0469\\
242.188 0.248 -27.8143\\
242.188 0.256 -28.7804\\
242.188 0.264 -30.2837\\
242.188 0.272 -32.7125\\
242.188 0.28 -34.5233\\
242.188 0.288 -34.1442\\
242.188 0.296 -31.7995\\
242.188 0.304 -30.1663\\
242.188 0.312 -29.4156\\
242.188 0.32 -29.6198\\
242.188 0.328 -30.5631\\
242.188 0.336 -32.7179\\
250 0.064 -59.5244\\
250 0.072 -57.0262\\
250 0.08 -51.7317\\
250 0.088 -43.1023\\
250 0.096 -37.6317\\
250 0.104 -33.312\\
250 0.112 -30.1581\\
250 0.12 -27.874\\
250 0.128 -26.5802\\
250 0.136 -25.6961\\
250 0.144 -25.6339\\
250 0.152 -25.9651\\
250 0.16 -27.1334\\
250 0.168 -28.8742\\
250 0.176 -31.9494\\
250 0.184 -35.4939\\
250 0.192 -37.9667\\
250 0.2 -38.491\\
250 0.208 -35.5447\\
250 0.216 -32.8629\\
250 0.224 -30.2394\\
250 0.232 -28.7613\\
250 0.24 -27.9779\\
250 0.248 -28.1028\\
250 0.256 -28.4301\\
250 0.264 -29.6722\\
250 0.272 -31.1219\\
250 0.28 -32.4418\\
250 0.288 -32.2517\\
250 0.296 -31.2637\\
250 0.304 -29.8617\\
250 0.312 -29.1017\\
250 0.32 -28.7993\\
250 0.328 -28.9199\\
250 0.336 -29.3081\\
257.812 0.064 -58.6703\\
257.812 0.072 -55.6061\\
257.812 0.08 -49.3748\\
257.812 0.088 -41.3284\\
257.812 0.096 -36.6115\\
257.812 0.104 -32.3004\\
257.812 0.112 -29.345\\
257.812 0.12 -27.4753\\
257.812 0.128 -26.078\\
257.812 0.136 -25.5145\\
257.812 0.144 -25.4655\\
257.812 0.152 -26.2343\\
257.812 0.16 -27.5808\\
257.812 0.168 -29.6614\\
257.812 0.176 -32.8025\\
257.812 0.184 -37.6738\\
257.812 0.192 -45.3433\\
257.812 0.2 -43.7899\\
257.812 0.208 -37.1339\\
257.812 0.216 -32.8791\\
257.812 0.224 -30.4604\\
257.812 0.232 -29.0262\\
257.812 0.24 -28.2386\\
257.812 0.248 -27.7747\\
257.812 0.256 -28.162\\
257.812 0.264 -28.699\\
257.812 0.272 -29.6743\\
257.812 0.28 -30.7176\\
257.812 0.288 -30.5746\\
257.812 0.296 -29.7944\\
257.812 0.304 -29.2708\\
257.812 0.312 -28.8833\\
257.812 0.32 -29.0164\\
257.812 0.328 -29.6336\\
257.812 0.336 -30.4281\\
265.625 0.064 -57.6694\\
265.625 0.072 -53.9181\\
265.625 0.08 -46.9239\\
265.625 0.088 -39.6962\\
265.625 0.096 -35.3394\\
265.625 0.104 -31.4345\\
265.625 0.112 -28.8104\\
265.625 0.12 -26.9179\\
265.625 0.128 -25.836\\
265.625 0.136 -25.4162\\
265.625 0.144 -25.6868\\
265.625 0.152 -26.48\\
265.625 0.16 -27.9891\\
265.625 0.168 -30.5161\\
265.625 0.176 -33.5233\\
265.625 0.184 -38.563\\
265.625 0.192 -53.2879\\
265.625 0.2 -44.6341\\
265.625 0.208 -37.3369\\
265.625 0.216 -33.0359\\
265.625 0.224 -30.9776\\
265.625 0.232 -29.2683\\
265.625 0.24 -28.2004\\
265.625 0.248 -28.1452\\
265.625 0.256 -28.5835\\
265.625 0.264 -30.1047\\
265.625 0.272 -32.2232\\
265.625 0.28 -33.9972\\
265.625 0.288 -33.8568\\
265.625 0.296 -31.9143\\
265.625 0.304 -30.1253\\
265.625 0.312 -29.3139\\
265.625 0.32 -29.2809\\
265.625 0.328 -29.7716\\
265.625 0.336 -30.9951\\
273.438 0.064 -56.4721\\
273.438 0.072 -51.9625\\
273.438 0.08 -44.4744\\
273.438 0.088 -38.1774\\
273.438 0.096 -33.8228\\
273.438 0.104 -30.4855\\
273.438 0.112 -28.0659\\
273.438 0.12 -26.3904\\
273.438 0.128 -25.5883\\
273.438 0.136 -25.3004\\
273.438 0.144 -25.627\\
273.438 0.152 -26.6515\\
273.438 0.16 -28.4371\\
273.438 0.168 -31.0073\\
273.438 0.176 -34.5428\\
273.438 0.184 -38.9543\\
273.438 0.192 -47.3642\\
273.438 0.2 -42.5789\\
273.438 0.208 -37.1632\\
273.438 0.216 -33.9326\\
273.438 0.224 -31.3231\\
273.438 0.232 -29.3849\\
273.438 0.24 -28.4358\\
273.438 0.248 -27.787\\
273.438 0.256 -27.7567\\
273.438 0.264 -28.0673\\
273.438 0.272 -28.7354\\
273.438 0.28 -28.9205\\
273.438 0.288 -29.171\\
273.438 0.296 -29.0806\\
273.438 0.304 -28.6754\\
273.438 0.312 -28.6098\\
273.438 0.32 -28.8789\\
273.438 0.328 -29.6582\\
273.438 0.336 -30.2952\\
281.25 0.064 -55.0177\\
281.25 0.072 -49.779\\
281.25 0.08 -42.1235\\
281.25 0.088 -36.7225\\
281.25 0.096 -32.4306\\
281.25 0.104 -29.5127\\
281.25 0.112 -27.3247\\
281.25 0.12 -26.1201\\
281.25 0.128 -25.3018\\
281.25 0.136 -25.2993\\
281.25 0.144 -25.9091\\
281.25 0.152 -27.1916\\
281.25 0.16 -29.1341\\
281.25 0.168 -31.7194\\
281.25 0.176 -35.8664\\
281.25 0.184 -39.8494\\
281.25 0.192 -45.7261\\
281.25 0.2 -41.8437\\
281.25 0.208 -37.5471\\
281.25 0.216 -34.7936\\
281.25 0.224 -31.5237\\
281.25 0.232 -29.8089\\
281.25 0.24 -28.5654\\
281.25 0.248 -28.2409\\
281.25 0.256 -28.5997\\
281.25 0.264 -29.7391\\
281.25 0.272 -31.4933\\
281.25 0.28 -33.7371\\
281.25 0.288 -33.394\\
281.25 0.296 -31.4219\\
281.25 0.304 -30.0894\\
281.25 0.312 -29.3432\\
281.25 0.32 -29.4453\\
281.25 0.328 -30.1751\\
281.25 0.336 -31.4515\\
289.062 0.064 -53.2539\\
289.062 0.072 -47.4406\\
289.062 0.08 -39.9646\\
289.062 0.088 -35.3096\\
289.062 0.096 -31.4326\\
289.062 0.104 -28.7389\\
289.062 0.112 -26.9303\\
289.062 0.12 -25.636\\
289.062 0.128 -25.2485\\
289.062 0.136 -25.3208\\
289.062 0.144 -26.0818\\
289.062 0.152 -27.5179\\
289.062 0.16 -29.8195\\
289.062 0.168 -32.9729\\
289.062 0.176 -37.2718\\
289.062 0.184 -41.4123\\
289.062 0.192 -46.0462\\
289.062 0.2 -42.1282\\
289.062 0.208 -38.5764\\
289.062 0.216 -34.9864\\
289.062 0.224 -31.9943\\
289.062 0.232 -29.9615\\
289.062 0.24 -28.607\\
289.062 0.248 -27.9055\\
289.062 0.256 -27.6622\\
289.062 0.264 -27.9954\\
289.062 0.272 -28.3098\\
289.062 0.28 -28.7917\\
289.062 0.288 -28.7631\\
289.062 0.296 -28.7298\\
289.062 0.304 -28.482\\
289.062 0.312 -28.5909\\
289.062 0.32 -29.082\\
289.062 0.328 -30.0503\\
289.062 0.336 -31.3228\\
296.875 0.064 -51.1705\\
296.875 0.072 -45.0365\\
296.875 0.08 -38.0801\\
296.875 0.088 -33.9706\\
296.875 0.096 -30.6326\\
296.875 0.104 -28.0637\\
296.875 0.112 -26.347\\
296.875 0.12 -25.4204\\
296.875 0.128 -25.0127\\
296.875 0.136 -25.3619\\
296.875 0.144 -26.2921\\
296.875 0.152 -27.9358\\
296.875 0.16 -30.4433\\
296.875 0.168 -34.3758\\
296.875 0.176 -38.655\\
296.875 0.184 -43.5219\\
296.875 0.192 -47.2376\\
296.875 0.2 -43.0173\\
296.875 0.208 -39.975\\
296.875 0.216 -35.1656\\
296.875 0.224 -32.5757\\
296.875 0.232 -30.1958\\
296.875 0.24 -29.0423\\
296.875 0.248 -28.2704\\
296.875 0.256 -28.2663\\
296.875 0.264 -28.6755\\
296.875 0.272 -29.7165\\
296.875 0.28 -30.3421\\
296.875 0.288 -30.5976\\
296.875 0.296 -29.9374\\
296.875 0.304 -29.3787\\
296.875 0.312 -29.066\\
296.875 0.32 -29.3242\\
296.875 0.328 -30.3266\\
296.875 0.336 -31.4499\\
304.688 0.064 -48.8273\\
304.688 0.072 -42.6566\\
304.688 0.08 -36.5206\\
304.688 0.088 -32.7345\\
304.688 0.096 -29.614\\
304.688 0.104 -27.3164\\
304.688 0.112 -25.8375\\
304.688 0.12 -25.1308\\
304.688 0.128 -25.0879\\
304.688 0.136 -25.6029\\
304.688 0.144 -26.8256\\
304.688 0.152 -28.7329\\
304.688 0.16 -31.3322\\
304.688 0.168 -35.4518\\
304.688 0.176 -40.1066\\
304.688 0.184 -46.0123\\
304.688 0.192 -48.8048\\
304.688 0.2 -44.28\\
304.688 0.208 -41.2759\\
304.688 0.216 -35.9093\\
304.688 0.224 -32.8924\\
304.688 0.232 -30.7094\\
304.688 0.24 -28.9039\\
304.688 0.248 -28.294\\
304.688 0.256 -28.1335\\
304.688 0.264 -28.7467\\
304.688 0.272 -29.4242\\
304.688 0.28 -30.215\\
304.688 0.288 -30.4677\\
304.688 0.296 -29.6781\\
304.688 0.304 -29.143\\
304.688 0.312 -29.0485\\
304.688 0.32 -29.6635\\
304.688 0.328 -30.7858\\
304.688 0.336 -33.0004\\
312.5 0.064 -46.3472\\
312.5 0.072 -40.3846\\
312.5 0.08 -35.2553\\
312.5 0.088 -31.551\\
312.5 0.096 -28.5549\\
312.5 0.104 -26.693\\
312.5 0.112 -25.5795\\
312.5 0.12 -24.9423\\
312.5 0.128 -24.9734\\
312.5 0.136 -25.6613\\
312.5 0.144 -27.0767\\
312.5 0.152 -29.3858\\
312.5 0.16 -32.5323\\
312.5 0.168 -36.3352\\
312.5 0.176 -41.7536\\
312.5 0.184 -48.7152\\
312.5 0.192 -50.4829\\
312.5 0.2 -45.7861\\
312.5 0.208 -42.0788\\
312.5 0.216 -37.0144\\
312.5 0.224 -33.1697\\
312.5 0.232 -30.8457\\
312.5 0.24 -29.3432\\
312.5 0.248 -28.0758\\
312.5 0.256 -27.427\\
312.5 0.264 -27.0149\\
312.5 0.272 -27.0556\\
312.5 0.28 -27.0926\\
312.5 0.288 -27.1402\\
312.5 0.296 -27.546\\
312.5 0.304 -27.855\\
312.5 0.312 -28.3131\\
312.5 0.32 -28.9597\\
312.5 0.328 -29.9954\\
312.5 0.336 -30.5947\\
320.312 0.064 -43.8824\\
320.312 0.072 -38.2965\\
320.312 0.08 -34.101\\
320.312 0.088 -30.3701\\
320.312 0.096 -27.8636\\
320.312 0.104 -26.183\\
320.312 0.112 -25.0764\\
320.312 0.12 -24.8228\\
320.312 0.128 -25.132\\
320.312 0.136 -26.1014\\
320.312 0.144 -27.6071\\
320.312 0.152 -29.9596\\
320.312 0.16 -33.7454\\
320.312 0.168 -37.462\\
320.312 0.176 -43.642\\
320.312 0.184 -51.4637\\
320.312 0.192 -52.1342\\
320.312 0.2 -47.4521\\
320.312 0.208 -42.4167\\
320.312 0.216 -37.8246\\
320.312 0.224 -33.7624\\
320.312 0.232 -31.109\\
320.312 0.24 -29.6125\\
320.312 0.248 -29.0069\\
320.312 0.256 -29.3106\\
320.312 0.264 -30.8615\\
320.312 0.272 -34.2091\\
320.312 0.28 -40.6216\\
320.312 0.288 -39.6576\\
320.312 0.296 -33.8465\\
320.312 0.304 -31.124\\
320.312 0.312 -30.1576\\
320.312 0.32 -30.5385\\
320.312 0.328 -32.3215\\
320.312 0.336 -36.8086\\
328.125 0.064 -41.579\\
328.125 0.072 -36.4574\\
328.125 0.08 -32.7741\\
328.125 0.088 -29.3002\\
328.125 0.096 -27.2011\\
328.125 0.104 -25.6293\\
328.125 0.112 -24.9466\\
328.125 0.12 -24.7322\\
328.125 0.128 -25.2354\\
328.125 0.136 -26.383\\
328.125 0.144 -28.4268\\
328.125 0.152 -30.9507\\
328.125 0.16 -34.8118\\
328.125 0.168 -39.0643\\
328.125 0.176 -45.7298\\
328.125 0.184 -54.1019\\
328.125 0.192 -53.6982\\
328.125 0.2 -49.2158\\
328.125 0.208 -42.6245\\
328.125 0.216 -38.0986\\
328.125 0.224 -34.4853\\
328.125 0.232 -31.7558\\
328.125 0.24 -29.4533\\
328.125 0.248 -28.0572\\
328.125 0.256 -26.9566\\
328.125 0.264 -26.2476\\
328.125 0.272 -25.7398\\
328.125 0.28 -25.5915\\
328.125 0.288 -25.8366\\
328.125 0.296 -26.3082\\
328.125 0.304 -26.9954\\
328.125 0.312 -27.8355\\
328.125 0.32 -28.9083\\
328.125 0.328 -29.7759\\
328.125 0.336 -30.8175\\
335.938 0.064 -39.5495\\
335.938 0.072 -34.8993\\
335.938 0.08 -31.2423\\
335.938 0.088 -28.4363\\
335.938 0.096 -26.3575\\
335.938 0.104 -25.2259\\
335.938 0.112 -24.6024\\
335.938 0.12 -24.732\\
335.938 0.128 -25.3925\\
335.938 0.136 -26.7484\\
335.938 0.144 -28.9731\\
335.938 0.152 -32.2855\\
335.938 0.16 -35.9381\\
335.938 0.168 -41.1646\\
335.938 0.176 -47.9135\\
335.938 0.184 -56.5119\\
335.938 0.192 -55.1567\\
335.938 0.2 -51.0263\\
335.938 0.208 -42.9657\\
335.938 0.216 -38.3204\\
335.938 0.224 -34.9191\\
335.938 0.232 -31.9936\\
335.938 0.24 -30.2163\\
335.938 0.248 -28.9379\\
335.938 0.256 -28.7165\\
335.938 0.264 -28.9496\\
335.938 0.272 -29.6798\\
335.938 0.28 -30.311\\
335.938 0.288 -30.3038\\
335.938 0.296 -29.8938\\
335.938 0.304 -29.555\\
335.938 0.312 -29.6682\\
335.938 0.32 -30.3105\\
335.938 0.328 -32.4399\\
335.938 0.336 -35.0184\\
343.75 0.064 -37.8358\\
343.75 0.072 -33.5682\\
343.75 0.08 -29.8722\\
343.75 0.088 -27.5769\\
343.75 0.096 -25.8548\\
343.75 0.104 -24.8486\\
343.75 0.112 -24.5621\\
343.75 0.12 -24.8234\\
343.75 0.128 -25.8429\\
343.75 0.136 -27.4996\\
343.75 0.144 -29.6612\\
343.75 0.152 -33.5178\\
343.75 0.16 -37.3927\\
343.75 0.168 -43.6897\\
343.75 0.176 -50.0554\\
343.75 0.184 -58.6411\\
343.75 0.192 -56.5107\\
343.75 0.2 -52.8405\\
343.75 0.208 -43.5447\\
343.75 0.216 -38.9354\\
343.75 0.224 -35.1683\\
343.75 0.232 -32.1069\\
343.75 0.24 -30.3544\\
343.75 0.248 -29.4244\\
343.75 0.256 -28.9147\\
343.75 0.264 -29.3383\\
343.75 0.272 -30.0049\\
343.75 0.28 -31.0296\\
343.75 0.288 -31.0315\\
343.75 0.296 -30.3227\\
343.75 0.304 -29.8486\\
343.75 0.312 -29.6319\\
343.75 0.32 -30.3827\\
343.75 0.328 -31.6484\\
343.75 0.336 -33.9124\\
351.562 0.064 -36.3387\\
351.562 0.072 -32.272\\
351.562 0.08 -28.9228\\
351.562 0.088 -26.6666\\
351.562 0.096 -25.3288\\
351.562 0.104 -24.5341\\
351.562 0.112 -24.3717\\
351.562 0.12 -24.8978\\
351.562 0.128 -26.0236\\
351.562 0.136 -28.0647\\
351.562 0.144 -30.8865\\
351.562 0.152 -34.5637\\
351.562 0.16 -39.291\\
351.562 0.168 -46.5263\\
351.562 0.176 -52.0177\\
351.562 0.184 -60.5032\\
351.562 0.192 -57.7676\\
351.562 0.2 -54.622\\
351.562 0.208 -44.3738\\
351.562 0.216 -40.0256\\
351.562 0.224 -35.6764\\
351.562 0.232 -32.8077\\
351.562 0.24 -30.0824\\
351.562 0.248 -28.0875\\
351.562 0.256 -26.7296\\
351.562 0.264 -25.6318\\
351.562 0.272 -25.0466\\
351.562 0.28 -24.6608\\
351.562 0.288 -24.8612\\
351.562 0.296 -25.4797\\
351.562 0.304 -26.3418\\
351.562 0.312 -27.6783\\
351.562 0.32 -29.1453\\
351.562 0.328 -30.6262\\
351.562 0.336 -32.7399\\
359.375 0.064 -34.7824\\
359.375 0.072 -30.8118\\
359.375 0.08 -28.0701\\
359.375 0.088 -26.0223\\
359.375 0.096 -24.7627\\
359.375 0.104 -24.3233\\
359.375 0.112 -24.4977\\
359.375 0.12 -25.2505\\
359.375 0.128 -26.6307\\
359.375 0.136 -28.6647\\
359.375 0.144 -32.2691\\
359.375 0.152 -35.7731\\
359.375 0.16 -41.618\\
359.375 0.168 -49.5355\\
359.375 0.176 -53.704\\
359.375 0.184 -62.15\\
359.375 0.192 -58.9367\\
359.375 0.2 -56.3408\\
359.375 0.208 -45.4279\\
359.375 0.216 -41.3794\\
359.375 0.224 -36.5595\\
359.375 0.232 -33.4981\\
359.375 0.24 -31.1015\\
359.375 0.248 -29.7454\\
359.375 0.256 -29.1997\\
359.375 0.264 -29.2306\\
359.375 0.272 -29.4652\\
359.375 0.28 -30.0893\\
359.375 0.288 -30.1271\\
359.375 0.296 -29.8808\\
359.375 0.304 -29.8425\\
359.375 0.312 -30.0495\\
359.375 0.32 -31.005\\
359.375 0.328 -33.4806\\
359.375 0.336 -37.802\\
367.188 0.064 -32.9623\\
367.188 0.072 -29.3177\\
367.188 0.08 -26.9462\\
367.188 0.088 -25.4029\\
367.188 0.096 -24.5123\\
367.188 0.104 -24.1459\\
367.188 0.112 -24.4178\\
367.188 0.12 -25.4392\\
367.188 0.128 -27.3454\\
367.188 0.136 -29.7814\\
367.188 0.144 -33.3858\\
367.188 0.152 -37.4304\\
367.188 0.16 -44.2892\\
367.188 0.168 -52.5581\\
367.188 0.176 -55.0869\\
367.188 0.184 -63.6392\\
367.188 0.192 -60.0263\\
367.188 0.2 -57.9734\\
367.188 0.208 -46.6705\\
367.188 0.216 -42.5718\\
367.188 0.224 -37.4695\\
367.188 0.232 -33.5045\\
367.188 0.24 -31.6132\\
367.188 0.248 -30.4301\\
367.188 0.256 -29.8954\\
367.188 0.264 -30.2241\\
367.188 0.272 -31.2018\\
367.188 0.28 -32.4654\\
367.188 0.288 -32.5389\\
367.188 0.296 -31.8763\\
367.188 0.304 -30.887\\
367.188 0.312 -30.6391\\
367.188 0.32 -31.2245\\
367.188 0.328 -32.521\\
367.188 0.336 -33.6469\\
375 0.064 -31.1237\\
375 0.072 -28.1537\\
375 0.08 -26.0516\\
375 0.088 -24.7236\\
375 0.096 -24.0478\\
375 0.104 -24.0955\\
375 0.112 -24.7819\\
375 0.12 -25.9627\\
375 0.128 -27.83\\
375 0.136 -31.1236\\
375 0.144 -34.4818\\
375 0.152 -39.6061\\
375 0.16 -47.179\\
375 0.168 -55.4306\\
375 0.176 -56.1986\\
375 0.184 -65.0184\\
375 0.192 -61.0437\\
375 0.2 -59.5031\\
375 0.208 -48.0628\\
375 0.216 -43.2431\\
375 0.224 -37.9769\\
375 0.232 -33.6805\\
375 0.24 -30.8224\\
375 0.248 -28.3858\\
375 0.256 -26.7954\\
375 0.264 -25.6016\\
375 0.272 -24.8138\\
375 0.28 -24.3652\\
375 0.288 -24.5206\\
375 0.296 -25.0451\\
375 0.304 -26.1556\\
375 0.312 -27.6473\\
375 0.32 -29.5032\\
375 0.328 -31.5253\\
375 0.336 -33.8145\\
382.812 0.064 -29.6876\\
382.812 0.072 -27.2867\\
382.812 0.08 -25.5001\\
382.812 0.088 -24.3836\\
382.812 0.096 -23.9675\\
382.812 0.104 -24.0981\\
382.812 0.112 -24.8833\\
382.812 0.12 -26.5843\\
382.812 0.128 -28.766\\
382.812 0.136 -32.2522\\
382.812 0.144 -36.0004\\
382.812 0.152 -42.2449\\
382.812 0.16 -50.1299\\
382.812 0.168 -58.0241\\
382.812 0.176 -57.0964\\
382.812 0.184 -66.3215\\
382.812 0.192 -61.9951\\
382.812 0.2 -60.9197\\
382.812 0.208 -49.5674\\
382.812 0.216 -43.4657\\
382.812 0.224 -38.1756\\
382.812 0.232 -34.6574\\
382.812 0.24 -31.3598\\
382.812 0.248 -29.2771\\
382.812 0.256 -27.6192\\
382.812 0.264 -26.3763\\
382.812 0.272 -25.6063\\
382.812 0.28 -25.3947\\
382.812 0.288 -25.4737\\
382.812 0.296 -26.0784\\
382.812 0.304 -26.9638\\
382.812 0.312 -28.3607\\
382.812 0.32 -30.3205\\
382.812 0.328 -33.2189\\
382.812 0.336 -39.6348\\
390.625 0.064 -28.5895\\
390.625 0.072 -26.2219\\
390.625 0.08 -24.6473\\
390.625 0.088 -23.849\\
390.625 0.096 -23.6781\\
390.625 0.104 -24.2311\\
390.625 0.112 -25.3565\\
390.625 0.12 -27.1231\\
390.625 0.128 -30.1667\\
390.625 0.136 -33.3791\\
390.625 0.144 -38.1247\\
390.625 0.152 -45.2309\\
390.625 0.16 -52.9627\\
390.625 0.168 -60.2861\\
390.625 0.176 -57.8348\\
390.625 0.184 -67.5731\\
390.625 0.192 -62.8857\\
390.625 0.2 -62.2186\\
390.625 0.208 -51.1492\\
390.625 0.216 -43.5882\\
390.625 0.224 -38.5238\\
390.625 0.232 -35.7372\\
390.625 0.24 -33.2674\\
390.625 0.248 -32.1313\\
390.625 0.256 -31.7295\\
390.625 0.264 -32.6066\\
390.625 0.272 -34.4877\\
390.625 0.28 -36.2008\\
390.625 0.288 -36.6281\\
390.625 0.296 -34.6832\\
390.625 0.304 -33.2423\\
390.625 0.312 -32.5539\\
390.625 0.32 -32.8948\\
390.625 0.328 -34.4762\\
390.625 0.336 -36.4041\\
398.438 0.064 -27.2869\\
398.438 0.072 -25.197\\
398.438 0.08 -24.1177\\
398.438 0.088 -23.6614\\
398.438 0.096 -23.7986\\
398.438 0.104 -24.4644\\
398.438 0.112 -26.0123\\
398.438 0.12 -28.0774\\
398.438 0.128 -31.4298\\
398.438 0.136 -34.9551\\
398.438 0.144 -40.8355\\
398.438 0.152 -48.4062\\
398.438 0.16 -55.5115\\
398.438 0.168 -62.2443\\
398.438 0.176 -58.4542\\
398.438 0.184 -68.7915\\
398.438 0.192 -63.7194\\
398.438 0.2 -63.3998\\
398.438 0.208 -52.7757\\
398.438 0.216 -43.8697\\
398.438 0.224 -39.3158\\
398.438 0.232 -35.7749\\
398.438 0.24 -33.2298\\
398.438 0.248 -31.0391\\
398.438 0.256 -30.1941\\
398.438 0.264 -29.6285\\
398.438 0.272 -29.4793\\
398.438 0.28 -29.6165\\
398.438 0.288 -29.7615\\
398.438 0.296 -29.9713\\
398.438 0.304 -30.2408\\
398.438 0.312 -30.8575\\
398.438 0.32 -32.0886\\
398.438 0.328 -33.7769\\
398.438 0.336 -34.466\\
406.25 0.064 -25.9743\\
406.25 0.072 -24.6297\\
406.25 0.08 -23.7064\\
406.25 0.088 -23.3496\\
406.25 0.096 -23.7149\\
406.25 0.104 -24.8321\\
406.25 0.112 -26.4581\\
406.25 0.12 -29.3613\\
406.25 0.128 -32.5646\\
406.25 0.136 -37.1751\\
406.25 0.144 -44.0269\\
406.25 0.152 -51.5698\\
406.25 0.16 -57.6766\\
406.25 0.168 -63.9698\\
406.25 0.176 -58.9815\\
406.25 0.184 -69.9926\\
406.25 0.192 -64.4991\\
406.25 0.2 -64.4666\\
406.25 0.208 -54.4182\\
406.25 0.216 -44.4086\\
406.25 0.224 -40.5649\\
406.25 0.232 -35.418\\
406.25 0.24 -31.8075\\
406.25 0.248 -29.1322\\
406.25 0.256 -26.9614\\
406.25 0.264 -25.4591\\
406.25 0.272 -24.5434\\
406.25 0.28 -24.0644\\
406.25 0.288 -24.1513\\
406.25 0.296 -24.7241\\
406.25 0.304 -25.924\\
406.25 0.312 -27.6396\\
406.25 0.32 -29.9683\\
406.25 0.328 -33.1709\\
406.25 0.336 -36.9815\\
414.062 0.064 -25.1798\\
414.062 0.072 -23.8134\\
414.062 0.08 -23.1779\\
414.062 0.088 -23.3868\\
414.062 0.096 -24.0546\\
414.062 0.104 -25.3756\\
414.062 0.112 -27.447\\
414.062 0.12 -30.5983\\
414.062 0.128 -34.1161\\
414.062 0.136 -40.0231\\
414.062 0.144 -47.5468\\
414.062 0.152 -54.4938\\
414.062 0.16 -59.4529\\
414.062 0.168 -65.535\\
414.062 0.176 -59.4344\\
414.062 0.184 -71.1913\\
414.062 0.192 -65.2267\\
414.062 0.2 -65.4241\\
414.062 0.208 -56.0518\\
414.062 0.216 -45.2135\\
414.062 0.224 -42.0132\\
414.062 0.232 -35.8342\\
414.062 0.24 -31.8851\\
414.062 0.248 -29.141\\
414.062 0.256 -26.7203\\
414.062 0.264 -25.0854\\
414.062 0.272 -23.9423\\
414.062 0.28 -23.5204\\
414.062 0.288 -23.6086\\
414.062 0.296 -24.3231\\
414.062 0.304 -25.5071\\
414.062 0.312 -27.3934\\
414.062 0.32 -29.8763\\
414.062 0.328 -33.2776\\
414.062 0.336 -40.4178\\
421.875 0.064 -24.2214\\
421.875 0.072 -23.2567\\
421.875 0.08 -23.1076\\
421.875 0.088 -23.2614\\
421.875 0.096 -24.3797\\
421.875 0.104 -26.0681\\
421.875 0.112 -28.8803\\
421.875 0.12 -31.9536\\
421.875 0.128 -36.389\\
421.875 0.136 -43.3926\\
421.875 0.144 -51.1996\\
421.875 0.152 -56.9872\\
421.875 0.16 -60.9023\\
421.875 0.168 -66.9957\\
421.875 0.176 -59.8247\\
421.875 0.184 -72.4035\\
421.875 0.192 -65.9032\\
421.875 0.2 -66.2782\\
421.875 0.208 -57.6559\\
421.875 0.216 -46.2578\\
421.875 0.224 -43.1489\\
421.875 0.232 -37.3689\\
421.875 0.24 -33.8735\\
421.875 0.248 -31.0814\\
421.875 0.256 -29.1643\\
421.875 0.264 -27.6361\\
421.875 0.272 -26.881\\
421.875 0.28 -26.4109\\
421.875 0.288 -26.5006\\
421.875 0.296 -26.9795\\
421.875 0.304 -28.1388\\
421.875 0.312 -29.7546\\
421.875 0.32 -32.0036\\
421.875 0.328 -34.6087\\
421.875 0.336 -38.6641\\
429.688 0.064 -23.3304\\
429.688 0.072 -22.8936\\
429.688 0.08 -22.7764\\
429.688 0.088 -23.6835\\
429.688 0.096 -24.8085\\
429.688 0.104 -27.0477\\
429.688 0.112 -30.1513\\
429.688 0.12 -33.829\\
429.688 0.128 -39.4021\\
429.688 0.136 -47.1309\\
429.688 0.144 -54.7495\\
429.688 0.152 -58.9786\\
429.688 0.16 -62.102\\
429.688 0.168 -68.3892\\
429.688 0.176 -60.1609\\
429.688 0.184 -73.6468\\
429.688 0.192 -66.5282\\
429.688 0.2 -67.0348\\
429.688 0.208 -59.2146\\
429.688 0.216 -47.5042\\
429.688 0.224 -43.5686\\
429.688 0.232 -39.5698\\
429.688 0.24 -36.8499\\
429.688 0.248 -34.8294\\
429.688 0.256 -34.1636\\
429.688 0.264 -34.385\\
429.688 0.272 -34.5551\\
429.688 0.28 -35.2552\\
429.688 0.288 -35.4253\\
429.688 0.296 -35.3703\\
429.688 0.304 -34.8319\\
429.688 0.312 -34.8624\\
429.688 0.32 -35.7409\\
429.688 0.328 -37.4069\\
429.688 0.336 -38.1533\\
437.5 0.064 -22.8958\\
437.5 0.072 -22.4472\\
437.5 0.08 -22.9838\\
437.5 0.088 -23.8375\\
437.5 0.096 -25.8124\\
437.5 0.104 -28.3302\\
437.5 0.112 -31.5205\\
437.5 0.12 -36.391\\
437.5 0.128 -43.0509\\
437.5 0.136 -51.0417\\
437.5 0.144 -57.9701\\
437.5 0.152 -60.5245\\
437.5 0.16 -63.113\\
437.5 0.168 -69.7397\\
437.5 0.176 -60.4492\\
437.5 0.184 -74.9421\\
437.5 0.192 -67.1008\\
437.5 0.2 -67.6991\\
437.5 0.208 -60.7155\\
437.5 0.216 -48.9145\\
437.5 0.224 -43.4503\\
437.5 0.232 -40.6097\\
437.5 0.24 -37.2346\\
437.5 0.248 -35.695\\
437.5 0.256 -34.82\\
437.5 0.264 -34.7055\\
437.5 0.272 -35.5427\\
437.5 0.28 -36.0647\\
437.5 0.288 -36.1399\\
437.5 0.296 -35.7633\\
437.5 0.304 -35.4305\\
437.5 0.312 -35.4986\\
437.5 0.32 -36.2356\\
437.5 0.328 -38.7656\\
437.5 0.336 -40.3184\\
445.312 0.064 -22.1224\\
445.312 0.072 -22.4392\\
445.312 0.08 -23.1164\\
445.312 0.088 -24.538\\
445.312 0.096 -26.8609\\
445.312 0.104 -29.9089\\
445.312 0.112 -33.5882\\
445.312 0.12 -39.592\\
445.312 0.128 -47.1762\\
445.312 0.136 -54.8867\\
445.312 0.144 -60.744\\
445.312 0.152 -61.7337\\
445.312 0.16 -63.9738\\
445.312 0.168 -71.062\\
445.312 0.176 -60.6944\\
445.312 0.184 -76.3157\\
445.312 0.192 -67.6188\\
445.312 0.2 -68.2759\\
445.312 0.208 -62.1485\\
445.312 0.216 -50.4525\\
445.312 0.224 -43.242\\
445.312 0.232 -39.5879\\
445.312 0.24 -35.2756\\
445.312 0.248 -32.3863\\
445.312 0.256 -30.3613\\
445.312 0.264 -28.9394\\
445.312 0.272 -27.8163\\
445.312 0.28 -27.4282\\
445.312 0.288 -27.543\\
445.312 0.296 -28.1801\\
445.312 0.304 -29.2518\\
445.312 0.312 -30.8829\\
445.312 0.32 -33.2184\\
445.312 0.328 -36.3348\\
445.312 0.336 -42.739\\
453.125 0.064 -22.0687\\
453.125 0.072 -22.405\\
453.125 0.08 -23.4642\\
453.125 0.088 -25.7097\\
453.125 0.096 -28.0686\\
453.125 0.104 -31.9461\\
453.125 0.112 -36.5837\\
453.125 0.12 -43.2704\\
453.125 0.128 -51.5634\\
453.125 0.136 -58.4365\\
453.125 0.144 -63.1116\\
453.125 0.152 -62.6983\\
453.125 0.16 -64.706\\
453.125 0.168 -72.3633\\
453.125 0.176 -60.9003\\
453.125 0.184 -77.8017\\
453.125 0.192 -68.0794\\
453.125 0.2 -68.769\\
453.125 0.208 -63.5027\\
453.125 0.216 -52.0839\\
453.125 0.224 -43.2087\\
453.125 0.232 -38.3186\\
453.125 0.24 -33.838\\
453.125 0.248 -30.3687\\
453.125 0.256 -27.8667\\
453.125 0.264 -26.0105\\
453.125 0.272 -24.9882\\
453.125 0.28 -24.426\\
453.125 0.288 -24.4607\\
453.125 0.296 -25.0559\\
453.125 0.304 -26.3928\\
453.125 0.312 -28.3843\\
453.125 0.32 -31.1279\\
453.125 0.328 -34.4062\\
453.125 0.336 -40.9807\\
460.938 0.064 -21.6468\\
460.938 0.072 -22.6369\\
460.938 0.08 -24.6153\\
460.938 0.088 -26.7443\\
460.938 0.096 -30.0909\\
460.938 0.104 -34.6136\\
460.938 0.112 -40.4893\\
460.938 0.12 -47.1673\\
460.938 0.128 -55.9354\\
460.938 0.136 -61.5811\\
460.938 0.144 -65.2011\\
460.938 0.152 -63.475\\
460.938 0.16 -65.3207\\
460.938 0.168 -73.6403\\
460.938 0.176 -61.07\\
460.938 0.184 -79.4464\\
460.938 0.192 -68.4789\\
460.938 0.2 -69.1817\\
460.938 0.208 -64.7626\\
460.938 0.216 -53.7731\\
460.938 0.224 -43.4151\\
460.938 0.232 -37.688\\
460.938 0.24 -33.1932\\
460.938 0.248 -29.5651\\
460.938 0.256 -26.7622\\
460.938 0.264 -24.8442\\
460.938 0.272 -23.5882\\
460.938 0.28 -23.0556\\
460.938 0.288 -23.1452\\
460.938 0.296 -23.8854\\
460.938 0.304 -25.1595\\
460.938 0.312 -27.2336\\
460.938 0.32 -30.1216\\
460.938 0.328 -33.7836\\
460.938 0.336 -38.8462\\
468.75 0.064 -22.0225\\
468.75 0.072 -23.6051\\
468.75 0.08 -25.6093\\
468.75 0.088 -28.4802\\
468.75 0.096 -33.1472\\
468.75 0.104 -37.943\\
468.75 0.112 -45.2143\\
468.75 0.12 -50.8873\\
468.75 0.128 -60.0231\\
468.75 0.136 -64.3894\\
468.75 0.144 -67.1264\\
468.75 0.152 -64.0933\\
468.75 0.16 -65.8228\\
468.75 0.168 -74.8738\\
468.75 0.176 -61.2059\\
468.75 0.184 -81.3128\\
468.75 0.192 -68.8135\\
468.75 0.2 -69.5163\\
468.75 0.208 -65.9035\\
468.75 0.216 -55.4761\\
468.75 0.224 -43.825\\
468.75 0.232 -37.6891\\
468.75 0.24 -33.0782\\
468.75 0.248 -29.2988\\
468.75 0.256 -26.4132\\
468.75 0.264 -24.502\\
468.75 0.272 -23.2754\\
468.75 0.28 -22.7126\\
468.75 0.288 -22.7376\\
468.75 0.296 -23.3704\\
468.75 0.304 -24.7657\\
468.75 0.312 -26.8419\\
468.75 0.32 -29.8299\\
468.75 0.328 -33.9583\\
468.75 0.336 -38.0753\\
476.562 0.064 -22.444\\
476.562 0.072 -24.4698\\
476.562 0.08 -27.3249\\
476.562 0.088 -31.6177\\
476.562 0.096 -37.0694\\
476.562 0.104 -41.8022\\
476.562 0.112 -50.63\\
476.562 0.12 -53.9253\\
476.562 0.128 -63.7457\\
476.562 0.136 -67.0277\\
476.562 0.144 -68.9306\\
476.562 0.152 -64.5673\\
476.562 0.16 -66.2139\\
476.562 0.168 -76.0176\\
476.562 0.176 -61.3097\\
476.562 0.184 -83.4827\\
476.562 0.192 -69.0791\\
476.562 0.2 -69.7747\\
476.562 0.208 -66.887\\
476.562 0.216 -57.1224\\
476.562 0.224 -44.353\\
476.562 0.232 -38.1179\\
476.562 0.24 -33.2755\\
476.562 0.248 -29.2955\\
476.562 0.256 -26.4938\\
476.562 0.264 -24.4721\\
476.562 0.272 -23.2763\\
476.562 0.28 -22.6641\\
476.562 0.288 -22.7522\\
476.562 0.296 -23.4629\\
476.562 0.304 -24.8026\\
476.562 0.312 -26.9205\\
476.562 0.32 -29.952\\
476.562 0.328 -34.3393\\
476.562 0.336 -38.3484\\
484.375 0.064 -23.5019\\
484.375 0.072 -26.7486\\
484.375 0.08 -30.909\\
484.375 0.088 -36.226\\
484.375 0.096 -41.4218\\
484.375 0.104 -45.8261\\
484.375 0.112 -56.4162\\
484.375 0.12 -55.9349\\
484.375 0.128 -67.277\\
484.375 0.136 -69.5968\\
484.375 0.144 -70.5476\\
484.375 0.152 -64.9032\\
484.375 0.16 -66.4941\\
484.375 0.168 -76.9863\\
484.375 0.176 -61.383\\
484.375 0.184 -86.0212\\
484.375 0.192 -69.2719\\
484.375 0.2 -69.9584\\
484.375 0.208 -67.6595\\
484.375 0.216 -58.5841\\
484.375 0.224 -44.8827\\
484.375 0.232 -38.7237\\
484.375 0.24 -33.6106\\
484.375 0.248 -29.5471\\
484.375 0.256 -26.7656\\
484.375 0.264 -24.7771\\
484.375 0.272 -23.4837\\
484.375 0.28 -22.9783\\
484.375 0.288 -22.9934\\
484.375 0.296 -23.6878\\
484.375 0.304 -25.0386\\
484.375 0.312 -27.1928\\
484.375 0.32 -30.2344\\
484.375 0.328 -34.5429\\
484.375 0.336 -39.2049\\
492.188 0.064 -27.5004\\
492.188 0.072 -32.2953\\
492.188 0.08 -37.3483\\
492.188 0.088 -41.8935\\
492.188 0.096 -45.3109\\
492.188 0.104 -49.1908\\
492.188 0.112 -61.4368\\
492.188 0.12 -56.9737\\
492.188 0.128 -70.653\\
492.188 0.136 -71.8688\\
492.188 0.144 -71.7577\\
492.188 0.152 -65.104\\
492.188 0.16 -66.6626\\
492.188 0.168 -77.6552\\
492.188 0.176 -61.4266\\
492.188 0.184 -88.7169\\
492.188 0.192 -69.389\\
492.188 0.2 -70.0683\\
492.188 0.208 -68.1589\\
492.188 0.216 -59.6451\\
492.188 0.224 -45.2802\\
492.188 0.232 -39.2401\\
492.188 0.24 -33.9129\\
492.188 0.248 -29.9326\\
492.188 0.256 -26.9999\\
492.188 0.264 -25.0152\\
492.188 0.272 -23.7807\\
492.188 0.28 -23.0919\\
492.188 0.288 -23.1821\\
492.188 0.296 -23.8386\\
492.188 0.304 -25.2598\\
492.188 0.312 -27.4058\\
492.188 0.32 -30.4801\\
492.188 0.328 -34.5561\\
492.188 0.336 -40.1197\\
500 0.064 -36.8941\\
500 0.072 -50.3662\\
500 0.08 -52.6384\\
500 0.088 -48.6148\\
500 0.096 -50.0396\\
500 0.104 -53.581\\
500 0.112 -66.4723\\
500 0.12 -60.2934\\
500 0.128 -75.4583\\
500 0.136 -75.9108\\
500 0.144 -75.2335\\
500 0.152 -68.1811\\
500 0.16 -69.7292\\
500 0.168 -80.9073\\
500 0.176 -64.4513\\
500 0.184 -93.1691\\
500 0.192 -72.4385\\
500 0.2 -73.1151\\
500 0.208 -71.3427\\
500 0.216 -63.0526\\
500 0.224 -48.439\\
500 0.232 -42.4529\\
500 0.24 -37.0444\\
500 0.248 -33.1382\\
500 0.256 -30.0925\\
500 0.264 -28.0308\\
500 0.272 -26.7635\\
500 0.28 -26.294\\
500 0.288 -26.3045\\
500 0.296 -27.0386\\
500 0.304 -28.349\\
500 0.312 -30.4838\\
500 0.32 -33.5841\\
500 0.328 -37.5459\\
500 0.336 -43.5307\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min= 1,
point meta max= 2,
colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 300,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 40,
axis background/.style={fill=white}
]
\addplot[area legend,solid,table/row sep=crcr,patch,patch type=rectangle,shader=flat corner,draw=black,forget plot,patch table with point meta={%
1 2 3 4 1\\
6 7 8 9 1\\
11 12 13 14 1\\
16 17 18 19 1\\
21 22 23 24 1\\
26 27 28 29 1\\
31 32 33 34 1\\
36 37 38 39 1\\
41 42 43 44 1\\
46 47 48 49 1\\
}]
table[row sep=crcr] {%
x y\\
7 0\\
7 0\\
7 37\\
32 37\\
32 0\\
32 0\\
32 0\\
32 15\\
57 15\\
57 0\\
57 0\\
57 0\\
57 8\\
82 8\\
82 0\\
82 0\\
82 0\\
82 3\\
107 3\\
107 0\\
107 0\\
107 0\\
107 3\\
132 3\\
132 0\\
132 0\\
132 0\\
132 3\\
157 3\\
157 0\\
157 0\\
157 0\\
157 1\\
182 1\\
182 0\\
182 0\\
182 0\\
182 1\\
207 1\\
207 0\\
207 0\\
207 0\\
207 0\\
232 0\\
232 0\\
232 0\\
232 0\\
232 1\\
257 1\\
257 0\\
257 0\\
};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
48.0417 0\\
48.0417 40\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax=1000,
xlabel={$\text{Time }\mu\text{sec.}$},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-0.25,
ymax=0.25,
ylabel={Amplitude $|$X$|$},
axis background/.style={fill=white},
title style={font=\bfseries},
title={${\text{\it{}Ae}}^{\text{-}\alpha\text{\it{}t}}\text{sin}\beta{\text{\it{}t}}\text{, }\alpha\text{\textless\textless}\beta\text{, }\beta\text{\textgreater\textgreater}\alpha\text{, }\alpha\text{\textless}\beta\text{, }\beta\text{\textgreater}\alpha\text{, b\textgreater{}a}$}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
1 0.0420006\\
2 0.0822127\\
3 0.119508\\
4 0.152858\\
5 0.18136\\
6 0.204265\\
7 0.220994\\
8 0.231152\\
9 0.234541\\
10 0.231156\\
11 0.221188\\
12 0.205017\\
13 0.18319\\
14 0.156414\\
15 0.125524\\
16 0.0914639\\
17 0.0552542\\
19 -0.0193242\\
20 -0.0555392\\
21 -0.089658\\
22 -0.120731\\
23 -0.14791\\
24 -0.170469\\
25 -0.187826\\
26 -0.199555\\
27 -0.205399\\
28 -0.20527\\
29 -0.199257\\
30 -0.187613\\
31 -0.17075\\
32 -0.149225\\
33 -0.12372\\
34 -0.0950215\\
35 -0.0639968\\
38 0.0337032\\
39 0.0646746\\
40 0.0933607\\
41 0.118971\\
42 0.140813\\
43 0.158313\\
44 0.17103\\
45 0.178665\\
46 0.18107\\
47 0.178249\\
48 0.170356\\
49 0.157686\\
50 0.140671\\
51 0.119858\\
52 0.0958975\\
53 0.0695196\\
55 0.0127088\\
57 -0.0439706\\
58 -0.070231\\
59 -0.0941123\\
60 -0.114963\\
61 -0.132226\\
62 -0.145458\\
63 -0.154334\\
64 -0.158661\\
65 -0.158377\\
66 -0.153556\\
67 -0.144398\\
68 -0.131226\\
69 -0.114474\\
70 -0.0946718\\
71 -0.0724301\\
72 -0.0484205\\
76 0.0508574\\
77 0.0729203\\
78 0.0925852\\
79 0.109322\\
80 0.12269\\
81 0.132354\\
82 0.138089\\
83 0.139783\\
84 0.137445\\
85 0.131198\\
86 0.121276\\
87 0.108013\\
88 0.091837\\
89 0.0732523\\
90 0.0528252\\
92 0.0089165\\
94 -0.0347882\\
95 -0.0549992\\
96 -0.0733519\\
97 -0.0893458\\
98 -0.102555\\
99 -0.11264\\
100 -0.119354\\
101 -0.122552\\
102 -0.122191\\
103 -0.118331\\
104 -0.111131\\
105 -0.100844\\
106 -0.0878078\\
107 -0.0724349\\
108 -0.0551985\\
110 -0.0172471\\
112 0.0216069\\
113 0.0399766\\
114 0.0569445\\
115 0.0720434\\
116 0.0848664\\
117 0.0950773\\
118 0.10242\\
119 0.106723\\
120 0.107905\\
121 0.105977\\
122 0.101036\\
123 0.0932667\\
124 0.0829304\\
125 0.0703596\\
126 0.0559458\\
128 0.0233792\\
131 -0.0275056\\
132 -0.0430599\\
133 -0.057163\\
134 -0.0694307\\
135 -0.0795367\\
136 -0.0872213\\
137 -0.0922977\\
138 -0.0946566\\
139 -0.0942681\\
140 -0.0911817\\
141 -0.0855232\\
142 -0.0774908\\
143 -0.0673477\\
144 -0.0554143\\
145 -0.0420576\\
147 -0.0127094\\
149 0.0172658\\
150 0.031412\\
151 0.0444607\\
152 0.056053\\
153 0.0658766\\
154 0.0736744\\
155 0.079251\\
156 0.0824772\\
157 0.0832934\\
158 0.0817095\\
159 0.0778044\\
160 0.0717223\\
161 0.0636678\\
162 0.0538995\\
163 0.0427213\\
165 0.0175217\\
168 -0.0217343\\
169 -0.033704\\
170 -0.0445408\\
171 -0.0539496\\
172 -0.0616804\\
173 -0.0675349\\
174 -0.0713712\\
175 -0.0731074\\
176 -0.0727228\\
177 -0.0702581\\
178 -0.0658128\\
179 -0.0595419\\
180 -0.0516506\\
181 -0.0423878\\
183 -0.0209137\\
187 0.0246734\\
188 0.0347076\\
189 0.0436069\\
190 0.0511319\\
191 0.057086\\
192 0.0613201\\
193 0.0637369\\
194 0.0642922\\
195 0.062996\\
196 0.0599113\\
197 0.0551512\\
198 0.0488758\\
199 0.0412859\\
201 0.0231343\\
206 -0.0263747\\
207 -0.0347011\\
208 -0.0419166\\
209 -0.0478297\\
210 -0.0522889\\
211 -0.0551866\\
212 -0.0564613\\
213 -0.0560992\\
214 -0.0541332\\
215 -0.0506422\\
216 -0.0457474\\
217 -0.0396086\\
219 -0.0244003\\
225 0.0270892\\
226 0.0339207\\
227 0.0396844\\
228 0.0442298\\
229 0.0474437\\
230 0.0492523\\
231 0.0496233\\
232 0.0485661\\
233 0.0461307\\
234 0.0424063\\
235 0.0375175\\
237 0.0248992\\
240 0.00189604\\
242 -0.013547\\
244 -0.0270315\\
245 -0.0325645\\
246 -0.0370867\\
247 -0.0404824\\
248 -0.04267\\
249 -0.0436034\\
250 -0.0432735\\
251 -0.0417071\\
252 -0.0389664\\
254 -0.0303715\\
256 -0.0185791\\
262 0.0211395\\
264 0.0307973\\
265 0.0342669\\
266 0.0367056\\
267 0.0380576\\
268 0.0382995\\
269 0.0374397\\
271 0.0326046\\
273 0.0242157\\
275 0.0133199\\
280 -0.0161397\\
282 -0.0252967\\
284 -0.03134\\
286 -0.0336721\\
288 -0.0321317\\
290 -0.0270001\\
292 -0.0189566\\
295 -0.00365319\\
298 0.0119328\\
300 0.0205185\\
302 0.0265466\\
304 0.029406\\
306 0.0288609\\
308 0.0250669\\
310 0.0185428\\
313 0.0054729\\
317 -0.0126214\\
319 -0.0196493\\
321 -0.0242609\\
323 -0.0260015\\
325 -0.0247535\\
327 -0.0207405\\
329 -0.0144927\\
332 -0.0026539\\
335 0.00936056\\
337 0.0159558\\
339 0.0205644\\
341 0.0227201\\
343 0.0222468\\
345 0.0192706\\
347 0.0141973\\
350 0.00407984\\
354 -0.00986784\\
356 -0.0152613\\
358 -0.0187798\\
360 -0.0200774\\
362 -0.0190686\\
364 -0.0159311\\
366 -0.0110785\\
370 0.00127711\\
373 0.0100361\\
375 0.0143879\\
377 0.0169924\\
379 0.0176033\\
381 0.0162065\\
383 0.0130155\\
386 0.00580389\\
392 -0.00994082\\
394 -0.0133971\\
396 -0.0152428\\
398 -0.0153137\\
400 -0.0136508\\
403 -0.0084674\\
412 0.0111625\\
414 0.0131437\\
416 0.0135838\\
418 0.0124755\\
421 0.00831992\\
426 -0.00206115\\
429 -0.00773884\\
432 -0.011251\\
434 -0.0119692\\
437 -0.0105005\\
440 -0.00647078\\
449 0.00865955\\
452 0.0104763\\
455 0.00960286\\
458 0.00636797\\
469 -0.00870771\\
472 -0.00910721\\
475 -0.00721664\\
479 -0.00217544\\
485 0.0058287\\
488 0.00786283\\
491 0.00785032\\
494 0.00587845\\
499 -5.32037e-05\\
504 -0.00554884\\
507 -0.00703958\\
510 -0.00671155\\
514 -0.00377727\\
524 0.00573149\\
527 0.00623993\\
531 0.00450947\\
537 -0.00106501\\
542 -0.00483447\\
546 -0.00541514\\
550 -0.00361762\\
562 0.00470274\\
566 0.00437816\\
571 0.00144196\\
579 -0.00374641\\
583 -0.00417533\\
588 -0.00220361\\
598 0.00343678\\
602 0.00359236\\
607 0.00165647\\
617 -0.00312267\\
622 -0.00282555\\
629 0.000353724\\
635 0.00266107\\
640 0.00259279\\
647 -9.2403e-05\\
654 -0.00241615\\
659 -0.00217272\\
668 0.00103953\\
674 0.00222459\\
680 0.00127699\\
693 -0.00195514\\
700 -0.000691423\\
711 0.00171798\\
718 0.000731738\\
730 -0.00150898\\
738 -0.00028865\\
748 0.00132668\\
756 0.000354035\\
767 -0.00116458\\
776 -2.94045e-05\\
786 0.00101432\\
797 -0.000368962\\
807 -0.000759173\\
829 0.000322562\\
844 -0.00058359\\
867 0.0001514\\
882 -0.000393416\\
901 0.000316708\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\node[right, align=left, text=black]
at (axis cs:0.1,0.5) {$\fontsize{16}{0}\text{black }{\color{magenta}\text{magenta }\color[rgb]{0 .5 .5}\text{teal }\color{red}\text{red}}\text{ black again}$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 6,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,forget plot]
table[row sep=crcr]{%
0 0\\
1 0.841471\\
2 0.909297\\
3 0.14112\\
4 -0.756802\\
5 -0.958924\\
6 -0.279415\\
};
\node[left, align=right, text=black]
at (axis cs:5.75,0.598) {Each cell is a quoted string\\You can specify how the string is aligned\\$\text{You can use LaTeX symbols like }\pi\text{ }\chi\text{ }\Xi$\\$\text{\bf{}Or use bold \rm}\text{\it{}or italic font\rm}$\\and use umlauts like äöüßÄÖÜ and accents éèêŐőŰűç};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis background/.style={fill=white},
title style={font=\bfseries},
title={$\text{Random TeX symbols \textbackslash\{\}\_\textasciicircum\$\%\#\&}$},
axis x line*=bottom,
axis y line*=left
]
\node[right, align=left, text=black]
at (axis cs:0.05,0.9) {$\diamondsuit\text{Tb/}^{\int}{\int}\zeta\text{C}^\text{,}\text{7}_\alpha\text{Xv}\omega\vee\vee\oplus{}_\in\pm{\cong}$};
\node[right, align=left, text=black]
at (axis cs:0.05,0.7) {$\cdot{\spadesuit\Omega{}_\text{v}\sim\exists\text{\textasciicircum}}\Im\text{p}\vartheta{}^\text{\textasciitilde}\text{j}{{\phi\text{\bf{}s}}\text{6bj}}\vartheta\sim$};
\node[right, align=left, text=black]
at (axis cs:0.05,0.5) {$_{\pi\Theta\circ\text{sB\bf}}\copyright\Rightarrow\Gamma{}_\sigma\times{}_\text{R}\lceil{}^\text{\o}\text{6}\leq\text{XV}\Sigma\prime$};
\node[right, align=left, text=black]
at (axis cs:0.05,0.3) {$_\text{E}\Phi{}^\text{\S}\text{s\}}\subset\Xi\mu\text{I}^\text{J}\text{:}\surd\rangle\text{aIG}_\text{l}\text{*}\kappa\lfloor$};
\node[right, align=left, text=black]
at (axis cs:0.05,0.1) {$\text{M}\clubsuit\sl\text{O}\circ\text{WVz}\approx\spadesuit{}_{\text{z}\subseteq\perp{}^\text{\$}\text{Q4\#}_\nu}\text{\textless\&}$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
\definecolor{mycolor3}{rgb}{0.92900,0.69400,0.12500}%
%
\begin{tikzpicture}
\begin{axis}[%
width=\figureWidth,
height=0.997\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 3,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 1,
ymax= 9,
axis background/.style={fill=white},
title style={font=\bfseries},
title={display math old: $\alpha$ and $\sum_\alpha^\Omega$; inline math: $\alpha$ and $\sum_\alpha^\Omega$}
]
\addplot [color=mycolor1,solid,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
1 8\\
2 3\\
3 4\\
};
\addplot [color=mycolor2,solid,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
1 1\\
2 5\\
3 9\\
};
\addplot [color=mycolor3,solid,mark=x,mark options={solid},forget plot]
table[row sep=crcr]{%
1 6\\
2 7\\
3 2\\
};
\node[right, align=left, text=black]
at (axis cs:1.5,2) {$\int_0^x\!\int_{\Omega} \mathrm{d}F(u,v) \mathrm{d}\omega$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
clip=false,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
hide axis,
axis x line*=bottom,
axis y line*=left
]
\node[right, align=left, text=black]
at (0.508cm,7.62cm) {$L\{f(t)\} \equiv F(s) = \int_0^\infty\!\!{e^{-st}f(t)dt}$};
\node[right, align=left, text=black]
at (0.508cm,5.08cm) {$e = \sum_{k=0}^\infty {\frac{1}{k!}} $};
\node[right, align=left, text=black]
at (0.508cm,2.54cm) {$m \ddot y = -m g + C_D \cdot {\frac{1}{2}}\rho {\dot y}^2 \cdot A$};
\node[right, align=left, text=black]
at (0.508cm,0cm) {$\int_{0}^{\infty} x^2 e^{-x^2} dx = \frac{\sqrt{\pi}}{4}$};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -2,
xmax= 2,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -2,
ymax= 2,
axis background/.style={fill=white}
]
\addplot [color=mycolor1,solid,mark=o,mark options={solid},forget plot]
table[row sep=crcr]{%
-2.4 -0.566834\\
-1 -0.5\\
-1 0.5\\
-2.4 0.566834\\
nan nan\\
-0.566834 2.4\\
-0.5 1\\
0.5 1\\
0.566834 2.4\\
nan nan\\
2.4 0.566834\\
1 0.5\\
1 -0.5\\
2.4 -0.566834\\
nan nan\\
0.566834 -2.4\\
0.5 -1\\
-0.5 -1\\
-0.566834 -2.4\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -1,
xmax= 1,
tick align=outside,
xlabel={x},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
ylabel={y},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= 0,
zmax= 20,
zlabel={z},
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
title style={font=\bfseries},
title={$\text{x = }{\text{sin}}\text{(}{\text{t}}\text{), y = }{\text{cos}}\text{(}{\text{t}}\text{), z = }{\text{t}}$},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3 [color=mycolor1,solid]
table[row sep=crcr] {%
0 1 0\\
0.0630002 0.998014 0.063042\\
0.12575 0.992062 0.126084\\
0.188001 0.982169 0.189126\\
0.249504 0.968374 0.252168\\
0.310016 0.950731 0.31521\\
0.369297 0.929312 0.378252\\
0.42711 0.9042 0.441294\\
0.483226 0.875496 0.504336\\
0.537423 0.843313 0.567378\\
0.589484 0.80778 0.63042\\
0.639203 0.769038 0.693462\\
0.686383 0.72724 0.756504\\
0.730836 0.682553 0.819546\\
0.772385 0.635154 0.882588\\
0.810866 0.585232 0.94563\\
0.846125 0.532985 1.00867\\
0.878022 0.47862 1.07171\\
0.906431 0.422354 1.13476\\
0.931239 0.364409 1.1978\\
0.952347 0.305017 1.26084\\
0.969671 0.244413 1.32388\\
0.983143 0.182838 1.38692\\
0.992709 0.120537 1.44997\\
0.998331 0.0577563 1.51301\\
0.999986 -0.00525348 1.57605\\
0.997669 -0.0682424 1.63909\\
0.991388 -0.13096 1.70213\\
0.981168 -0.193158 1.76518\\
0.96705 -0.254588 1.82822\\
0.94909 -0.315006 1.89126\\
0.927359 -0.374174 1.9543\\
0.901943 -0.431854 2.01734\\
0.872945 -0.487819 2.08039\\
0.840478 -0.541846 2.14343\\
0.804672 -0.59372 2.20647\\
0.765669 -0.643235 2.26951\\
0.723624 -0.690194 2.33255\\
0.678704 -0.734412 2.3956\\
0.631088 -0.775711 2.45864\\
0.580964 -0.813929 2.52168\\
0.528532 -0.848913 2.58472\\
0.474001 -0.880524 2.64776\\
0.417586 -0.908637 2.71081\\
0.359512 -0.93314 2.77385\\
0.30001 -0.953936 2.83689\\
0.239316 -0.970942 2.89993\\
0.177671 -0.98409 2.96297\\
0.11532 -0.993328 3.02602\\
0.0525108 -0.99862 3.08906\\
-0.0105068 -0.999945 3.1521\\
-0.0734827 -0.997296 3.21514\\
-0.136167 -0.990686 3.27818\\
-0.19831 -0.980139 3.34123\\
-0.259665 -0.965699 3.40427\\
-0.319988 -0.947422 3.46731\\
-0.37904 -0.92538 3.53035\\
-0.436586 -0.899662 3.59339\\
-0.492398 -0.87037 3.65644\\
-0.546254 -0.83762 3.71948\\
-0.597939 -0.801542 3.78252\\
-0.647248 -0.762279 3.84556\\
-0.693986 -0.719988 3.9086\\
-0.737967 -0.674837 3.97165\\
-0.779016 -0.627004 4.03469\\
-0.81697 -0.57668 4.09773\\
-0.851678 -0.524065 4.16077\\
-0.883002 -0.469368 4.22381\\
-0.910819 -0.412807 4.28686\\
-0.935016 -0.354605 4.3499\\
-0.955499 -0.294994 4.41294\\
-0.972186 -0.234212 4.47598\\
-0.98501 -0.172498 4.53902\\
-0.993921 -0.1101 4.60207\\
-0.998882 -0.0472639 4.66511\\
-0.999876 0.0157598 4.72815\\
-0.996897 0.078721 4.79119\\
-0.989957 0.141369 4.85423\\
-0.979084 0.203456 4.91728\\
-0.964321 0.264734 4.98032\\
-0.945727 0.324961 5.04336\\
-0.923376 0.383897 5.1064\\
-0.897356 0.441307 5.16944\\
-0.867771 0.496964 5.23249\\
-0.834739 0.550646 5.29553\\
-0.79839 0.602141 5.35857\\
-0.758868 0.651244 5.42161\\
-0.716332 0.697759 5.48465\\
-0.670951 0.741502 5.5477\\
-0.622903 0.782299 5.61074\\
-0.57238 0.819988 5.67378\\
-0.519584 0.854419 5.73682\\
-0.464723 0.885456 5.79986\\
-0.408016 0.912975 5.86291\\
-0.349688 0.936866 5.92595\\
-0.28997 0.957036 5.98899\\
-0.229101 0.973403 6.05203\\
-0.167321 0.985902 6.11507\\
-0.104877 0.994485 6.17812\\
-0.0420156 0.999117 6.24116\\
0.0210125 0.999779 6.3042\\
0.083957 0.996469 6.36724\\
0.146568 0.989201 6.43028\\
0.208597 0.978002 6.49333\\
0.269797 0.962917 6.55637\\
0.329925 0.944007 6.61941\\
0.388742 0.921347 6.68245\\
0.446015 0.895026 6.74549\\
0.501516 0.865148 6.80854\\
0.555024 0.831834 6.87158\\
0.606327 0.795215 6.93462\\
0.655222 0.755437 6.99766\\
0.701513 0.712657 7.0607\\
0.745017 0.667046 7.12375\\
0.785561 0.618784 7.18679\\
0.822984 0.568065 7.24983\\
0.857137 0.515088 7.31287\\
0.887885 0.460065 7.37591\\
0.915106 0.403214 7.43896\\
0.93869 0.344761 7.502\\
0.958546 0.284939 7.56504\\
0.974593 0.223984 7.62808\\
0.986768 0.16214 7.69112\\
0.995022 0.0996508 7.75417\\
0.999324 0.0367662 7.81721\\
0.999655 -0.0262645 7.88025\\
0.996015 -0.0891908 7.94329\\
0.988417 -0.151763 8.00633\\
0.976892 -0.213732 8.06938\\
0.961487 -0.274852 8.13242\\
0.942261 -0.33488 8.19546\\
0.919292 -0.393577 8.2585\\
0.89267 -0.450711 8.32154\\
0.862502 -0.506054 8.38459\\
0.828907 -0.559386 8.44763\\
0.792019 -0.610497 8.51067\\
0.751984 -0.659181 8.57371\\
0.708962 -0.705247 8.63675\\
0.663123 -0.748511 8.6998\\
0.614649 -0.788801 8.76284\\
0.563733 -0.825957 8.82588\\
0.510578 -0.859831 8.88892\\
0.455394 -0.89029 8.95196\\
0.398401 -0.917211 9.01501\\
0.339825 -0.940489 9.07805\\
0.279899 -0.960029 9.14109\\
0.218861 -0.975756 9.20413\\
0.156953 -0.987606 9.26717\\
0.0944221 -0.995532 9.33021\\
0.0315158 -0.999503 9.39326\\
-0.0315158 -0.999503 9.4563\\
-0.0944221 -0.995532 9.51934\\
-0.156953 -0.987606 9.58238\\
-0.218861 -0.975756 9.64542\\
-0.279899 -0.960029 9.70847\\
-0.339825 -0.940489 9.77151\\
-0.398401 -0.917211 9.83455\\
-0.455394 -0.89029 9.89759\\
-0.510578 -0.859831 9.96063\\
-0.563733 -0.825957 10.0237\\
-0.614649 -0.788801 10.0867\\
-0.663123 -0.748511 10.1498\\
-0.708962 -0.705247 10.2128\\
-0.751984 -0.659181 10.2758\\
-0.792019 -0.610497 10.3389\\
-0.828907 -0.559386 10.4019\\
-0.862502 -0.506054 10.465\\
-0.89267 -0.450711 10.528\\
-0.919292 -0.393577 10.5911\\
-0.942261 -0.33488 10.6541\\
-0.961487 -0.274852 10.7171\\
-0.976892 -0.213732 10.7802\\
-0.988417 -0.151763 10.8432\\
-0.996015 -0.0891908 10.9063\\
-0.999655 -0.0262645 10.9693\\
-0.999324 0.0367662 11.0323\\
-0.995022 0.0996508 11.0954\\
-0.986768 0.16214 11.1584\\
-0.974593 0.223984 11.2215\\
-0.958546 0.284939 11.2845\\
-0.93869 0.344761 11.3476\\
-0.915106 0.403214 11.4106\\
-0.887885 0.460065 11.4736\\
-0.857137 0.515088 11.5367\\
-0.822984 0.568065 11.5997\\
-0.785561 0.618784 11.6628\\
-0.745017 0.667046 11.7258\\
-0.701513 0.712657 11.7889\\
-0.655222 0.755437 11.8519\\
-0.606327 0.795215 11.9149\\
-0.555024 0.831834 11.978\\
-0.501516 0.865148 12.041\\
-0.446015 0.895026 12.1041\\
-0.388742 0.921347 12.1671\\
-0.329925 0.944007 12.2301\\
-0.269797 0.962917 12.2932\\
-0.208597 0.978002 12.3562\\
-0.146568 0.989201 12.4193\\
-0.083957 0.996469 12.4823\\
-0.0210125 0.999779 12.5454\\
0.0420156 0.999117 12.6084\\
0.104877 0.994485 12.6714\\
0.167321 0.985902 12.7345\\
0.229101 0.973403 12.7975\\
0.28997 0.957036 12.8606\\
0.349688 0.936866 12.9236\\
0.408016 0.912975 12.9867\\
0.464723 0.885456 13.0497\\
0.519584 0.854419 13.1127\\
0.57238 0.819988 13.1758\\
0.622903 0.782299 13.2388\\
0.670951 0.741502 13.3019\\
0.716332 0.697759 13.3649\\
0.758868 0.651244 13.4279\\
0.79839 0.602141 13.491\\
0.834739 0.550646 13.554\\
0.867771 0.496964 13.6171\\
0.897356 0.441307 13.6801\\
0.923376 0.383897 13.7432\\
0.945727 0.324961 13.8062\\
0.964321 0.264734 13.8692\\
0.979084 0.203456 13.9323\\
0.989957 0.141369 13.9953\\
0.996897 0.078721 14.0584\\
0.999876 0.0157598 14.1214\\
0.998882 -0.0472639 14.1844\\
0.993921 -0.1101 14.2475\\
0.98501 -0.172498 14.3105\\
0.972186 -0.234212 14.3736\\
0.955499 -0.294994 14.4366\\
0.935016 -0.354605 14.4997\\
0.910819 -0.412807 14.5627\\
0.883002 -0.469368 14.6257\\
0.851678 -0.524065 14.6888\\
0.81697 -0.57668 14.7518\\
0.779016 -0.627004 14.8149\\
0.737967 -0.674837 14.8779\\
0.693986 -0.719988 14.941\\
0.647248 -0.762279 15.004\\
0.597939 -0.801542 15.067\\
0.546254 -0.83762 15.1301\\
0.492398 -0.87037 15.1931\\
0.436586 -0.899662 15.2562\\
0.37904 -0.92538 15.3192\\
0.319988 -0.947422 15.3822\\
0.259665 -0.965699 15.4453\\
0.19831 -0.980139 15.5083\\
0.136167 -0.990686 15.5714\\
0.0734827 -0.997296 15.6344\\
0.0105068 -0.999945 15.6975\\
-0.0525108 -0.99862 15.7605\\
-0.11532 -0.993328 15.8235\\
-0.177671 -0.98409 15.8866\\
-0.239316 -0.970942 15.9496\\
-0.30001 -0.953936 16.0127\\
-0.359512 -0.93314 16.0757\\
-0.417586 -0.908637 16.1388\\
-0.474001 -0.880524 16.2018\\
-0.528532 -0.848913 16.2648\\
-0.580964 -0.813929 16.3279\\
-0.631088 -0.775711 16.3909\\
-0.678704 -0.734412 16.454\\
-0.723624 -0.690194 16.517\\
-0.765669 -0.643235 16.58\\
-0.804672 -0.59372 16.6431\\
-0.840478 -0.541846 16.7061\\
-0.872945 -0.487819 16.7692\\
-0.901943 -0.431854 16.8322\\
-0.927359 -0.374174 16.8953\\
-0.94909 -0.315006 16.9583\\
-0.96705 -0.254588 17.0213\\
-0.981168 -0.193158 17.0844\\
-0.991388 -0.13096 17.1474\\
-0.997669 -0.0682424 17.2105\\
-0.999986 -0.00525348 17.2735\\
-0.998331 0.0577563 17.3365\\
-0.992709 0.120537 17.3996\\
-0.983143 0.182838 17.4626\\
-0.969671 0.244413 17.5257\\
-0.952347 0.305017 17.5887\\
-0.931239 0.364409 17.6518\\
-0.906431 0.422354 17.7148\\
-0.878022 0.47862 17.7778\\
-0.846125 0.532985 17.8409\\
-0.810866 0.585232 17.9039\\
-0.772385 0.635154 17.967\\
-0.730836 0.682553 18.03\\
-0.686383 0.72724 18.0931\\
-0.639203 0.769038 18.1561\\
-0.589484 0.80778 18.2191\\
-0.537423 0.843313 18.2822\\
-0.483226 0.875496 18.3452\\
-0.42711 0.9042 18.4083\\
-0.369297 0.929312 18.4713\\
-0.310016 0.950731 18.5343\\
-0.249504 0.968374 18.5974\\
-0.188001 0.982169 18.6604\\
-0.12575 0.992062 18.7235\\
-0.0630002 0.998014 18.7865\\
-7.34788e-16 1 18.8496\\
};
\node[right, align=left, text=black]
at (axis cs:0.5,0.5,10) {text inside axis limits};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -2,
xmax= 2,
tick align=outside,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -2,
ymax= 2,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin=-0.5,
zmax= 0.4,
view={ -69}{ 14},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
shader=flat corner,draw=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=17]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
-2 -2 nan nan\\
-2 -1.75 nan nan\\
-2 -1.5 nan nan\\
-2 -1.25 nan nan\\
-2 -1 nan nan\\
-2 -0.75 nan nan\\
-2 -0.5 nan nan\\
-2 -0.25 nan nan\\
-2 0 nan nan\\
-2 0.25 nan nan\\
-2 0.5 nan nan\\
-2 0.75 nan nan\\
-2 1 nan nan\\
-2 1.25 nan nan\\
-2 1.5 nan nan\\
-2 1.75 nan nan\\
-2 2 nan nan\\
-1.75 -2 nan nan\\
-1.75 -1.75 -0.00533641 -0.00533641\\
-1.75 -1.5 -0.0102542 -0.0102542\\
-1.75 -1.25 -0.020683 -0.020683\\
-1.75 -1 -0.0292647 -0.0292647\\
-1.75 -0.75 -0.0455405 -0.0455405\\
-1.75 -0.5 -0.0675467 -0.0675467\\
-1.75 -0.25 -0.0868171 -0.0868171\\
-1.75 0 -0.0845599 -0.0845599\\
-1.75 0.25 -0.0863429 -0.0863429\\
-1.75 0.5 -0.0639289 -0.0639289\\
-1.75 0.75 -0.0520445 -0.0520445\\
-1.75 1 -0.032428 -0.032428\\
-1.75 1.25 -0.0179372 -0.0179372\\
-1.75 1.5 -0.00999782 -0.00999782\\
-1.75 1.75 -0.00505983 -0.00505983\\
-1.75 2 nan nan\\
-1.5 -2 nan nan\\
-1.5 -1.75 -0.0123616 -0.0123616\\
-1.5 -1.5 -0.0177977 -0.0177977\\
-1.5 -1.25 -0.0320448 -0.0320448\\
-1.5 -1 -0.052028 -0.052028\\
-1.5 -0.75 -0.10082 -0.10082\\
-1.5 -0.5 -0.130092 -0.130092\\
-1.5 -0.25 -0.149596 -0.149596\\
-1.5 0 -0.152319 -0.152319\\
-1.5 0.25 -0.146924 -0.146924\\
-1.5 0.5 -0.126702 -0.126702\\
-1.5 0.75 -0.0982772 -0.0982772\\
-1.5 1 -0.0584945 -0.0584945\\
-1.5 1.25 -0.0376352 -0.0376352\\
-1.5 1.5 -0.0181408 -0.0181408\\
-1.5 1.75 -0.00893549 -0.00893549\\
-1.5 2 nan nan\\
-1.25 -2 nan nan\\
-1.25 -1.75 -0.0160523 -0.0160523\\
-1.25 -1.5 -0.030351 -0.030351\\
-1.25 -1.25 -0.0521658 -0.0521658\\
-1.25 -1 -0.0885074 -0.0885074\\
-1.25 -0.75 -0.148712 -0.148712\\
-1.25 -0.5 -0.208389 -0.208389\\
-1.25 -0.25 -0.241466 -0.241466\\
-1.25 0 -0.245186 -0.245186\\
-1.25 0.25 -0.235446 -0.235446\\
-1.25 0.5 -0.204914 -0.204914\\
-1.25 0.75 -0.166605 -0.166605\\
-1.25 1 -0.099701 -0.099701\\
-1.25 1.25 -0.0551196 -0.0551196\\
-1.25 1.5 -0.0351801 -0.0351801\\
-1.25 1.75 -0.0130065 -0.0130065\\
-1.25 2 nan nan\\
-1 -2 nan nan\\
-1 -1.75 -0.0177446 -0.0177446\\
-1 -1.5 -0.0424877 -0.0424877\\
-1 -1.25 -0.0761952 -0.0761952\\
-1 -1 -0.132 -0.132\\
-1 -0.75 -0.186792 -0.186792\\
-1 -0.5 -0.259288 -0.259288\\
-1 -0.25 -0.332894 -0.332894\\
-1 0 -0.335195 -0.335195\\
-1 0.25 -0.323967 -0.323967\\
-1 0.5 -0.272719 -0.272719\\
-1 0.75 -0.201088 -0.201088\\
-1 1 -0.133638 -0.133638\\
-1 1.25 -0.07733 -0.07733\\
-1 1.5 -0.0426296 -0.0426296\\
-1 1.75 -0.018252 -0.018252\\
-1 2 nan nan\\
-0.75 -2 nan nan\\
-0.75 -1.75 -0.0232843 -0.0232843\\
-0.75 -1.5 -0.0544758 -0.0544758\\
-0.75 -1.25 -0.0841901 -0.0841901\\
-0.75 -1 -0.159833 -0.159833\\
-0.75 -0.75 -0.221262 -0.221262\\
-0.75 -0.5 -0.310267 -0.310267\\
-0.75 -0.25 -0.357176 -0.357176\\
-0.75 0 -0.382801 -0.382801\\
-0.75 0.25 -0.381414 -0.381414\\
-0.75 0.5 -0.316847 -0.316847\\
-0.75 0.75 -0.241515 -0.241515\\
-0.75 1 -0.16488 -0.16488\\
-0.75 1.25 -0.0897014 -0.0897014\\
-0.75 1.5 -0.0434859 -0.0434859\\
-0.75 1.75 -0.0212111 -0.0212111\\
-0.75 2 nan nan\\
-0.5 -2 nan nan\\
-0.5 -1.75 -0.0340626 -0.0340626\\
-0.5 -1.5 -0.063777 -0.063777\\
-0.5 -1.25 -0.0934913 -0.0934913\\
-0.5 -1 -0.123311 -0.123311\\
-0.5 -0.75 -0.20331 -0.20331\\
-0.5 -0.5 -0.236463 -0.236463\\
-0.5 -0.25 -0.266124 -0.266124\\
-0.5 0 -0.294944 -0.294944\\
-0.5 0.25 -0.284893 -0.284893\\
-0.5 0.5 -0.224057 -0.224057\\
-0.5 0.75 -0.179076 -0.179076\\
-0.5 1 -0.135904 -0.135904\\
-0.5 1.25 -0.0767037 -0.0767037\\
-0.5 1.5 -0.0452518 -0.0452518\\
-0.5 1.75 -0.022169 -0.022169\\
-0.5 2 nan nan\\
-0.25 -2 nan nan\\
-0.25 -1.75 -0.00594335 -0.00594335\\
-0.25 -1.5 -0.0412023 -0.0412023\\
-0.25 -1.25 -0.0764613 -0.0764613\\
-0.25 -1 -0.11172 -0.11172\\
-0.25 -0.75 -0.0851396 -0.0851396\\
-0.25 -0.5 -0.126337 -0.126337\\
-0.25 -0.25 -0.167535 -0.167535\\
-0.25 0 -0.204732 -0.204732\\
-0.25 0.25 -0.181311 -0.181311\\
-0.25 0.5 -0.105969 -0.105969\\
-0.25 0.75 -0.076626 -0.076626\\
-0.25 1 -0.0701154 -0.0701154\\
-0.25 1.25 -0.0310196 -0.0310196\\
-0.25 1.5 -0.0214243 -0.0214243\\
-0.25 1.75 -0.0146443 -0.0146443\\
-0.25 2 nan nan\\
0 -2 nan nan\\
0 -1.75 0.0139993 0.0139993\\
0 -1.5 -0.00958789 -0.00958789\\
0 -1.25 -0.0448469 -0.0448469\\
0 -1 -0.0181485 -0.0181485\\
0 -0.75 0.0383185 0.0383185\\
0 -0.5 0.0474656 0.0474656\\
0 -0.25 0.00626789 0.00626789\\
0 0 -0.019139 -0.019139\\
0 0.25 -0.0203571 -0.0203571\\
0 0.5 0.0121189 0.0121189\\
0 0.75 0.0258245 0.0258245\\
0 1 -0.0120574 -0.0120574\\
0 1.25 -0.00296105 -0.00296105\\
0 1.5 0.00112002 0.00112002\\
0 1.75 0.000611578 0.000611578\\
0 2 nan nan\\
0.25 -2 nan nan\\
0.25 -1.75 0.0156368 0.0156368\\
0.25 -1.5 0.0220265 0.0220265\\
0.25 -1.25 0.0203327 0.0203327\\
0.25 -1 0.0767997 0.0767997\\
0.25 -0.75 0.133267 0.133267\\
0.25 -0.5 0.189734 0.189734\\
0.25 -0.25 0.194668 0.194668\\
0.25 0 0.187543 0.187543\\
0.25 0.25 0.170492 0.170492\\
0.25 0.5 0.153441 0.153441\\
0.25 0.75 0.0965305 0.0965305\\
0.25 1 0.0487613 0.0487613\\
0.25 1.25 0.0481135 0.0481135\\
0.25 1.5 0.0121089 0.0121089\\
0.25 1.75 0.0103706 0.0103706\\
0.25 2 nan nan\\
0.5 -2 nan nan\\
0.5 -1.75 0.0172742 0.0172742\\
0.5 -1.5 0.0400205 0.0400205\\
0.5 -1.25 0.0829887 0.0829887\\
0.5 -1 0.130739 0.130739\\
0.5 -0.75 0.181461 0.181461\\
0.5 -0.5 0.233908 0.233908\\
0.5 -0.25 0.305863 0.305863\\
0.5 0 0.295286 0.295286\\
0.5 0.25 0.278236 0.278236\\
0.5 0.5 0.230236 0.230236\\
0.5 0.75 0.161468 0.161468\\
0.5 1 0.11123 0.11123\\
0.5 1.25 0.0850327 0.0850327\\
0.5 1.5 0.049028 0.049028\\
0.5 1.75 0.0192706 0.0192706\\
0.5 2 nan nan\\
0.75 -2 nan nan\\
0.75 -1.75 0.0189117 0.0189117\\
0.75 -1.5 0.0487546 0.0487546\\
0.75 -1.25 0.0848713 0.0848713\\
0.75 -1 0.158776 0.158776\\
0.75 -0.75 0.209498 0.209498\\
0.75 -0.5 0.306335 0.306335\\
0.75 -0.25 0.382003 0.382003\\
0.75 0 0.391858 0.391858\\
0.75 0.25 0.385979 0.385979\\
0.75 0.5 0.29943 0.29943\\
0.75 0.75 0.227268 0.227268\\
0.75 1 0.151871 0.151871\\
0.75 1.25 0.0956204 0.0956204\\
0.75 1.5 0.0507861 0.0507861\\
0.75 1.75 0.0209233 0.0209233\\
0.75 2 nan nan\\
1 -2 nan nan\\
1 -1.75 0.0230998 0.0230998\\
1 -1.5 0.0513679 0.0513679\\
1 -1.25 0.079636 0.079636\\
1 -1 0.133823 0.133823\\
1 -0.75 0.205995 0.205995\\
1 -0.5 0.24464 0.24464\\
1 -0.25 0.296108 0.296108\\
1 0 0.334 0.334\\
1 0.25 0.313968 0.313968\\
1 0.5 0.26189 0.26189\\
1 0.75 0.207203 0.207203\\
1 1 0.134113 0.134113\\
1 1.25 0.0815798 0.0815798\\
1 1.5 0.0383917 0.0383917\\
1 1.75 0.0191753 0.0191753\\
1 2 nan nan\\
1.25 -2 nan nan\\
1.25 -1.75 0.0227507 0.0227507\\
1.25 -1.5 0.0515586 0.0515586\\
1.25 -1.25 0.0769363 0.0769363\\
1.25 -1 0.0969031 0.0969031\\
1.25 -0.75 0.14742 0.14742\\
1.25 -0.5 0.174478 0.174478\\
1.25 -0.25 0.214178 0.214178\\
1.25 0 0.254937 0.254937\\
1.25 0.25 0.241333 0.241333\\
1.25 0.5 0.196706 0.196706\\
1.25 0.75 0.142857 0.142857\\
1.25 1 0.106529 0.106529\\
1.25 1.25 0.0666845 0.0666845\\
1.25 1.5 0.026242 0.026242\\
1.25 1.75 0.0129769 0.0129769\\
1.25 2 nan nan\\
1.5 -2 nan nan\\
1.5 -1.75 0.00734829 0.00734829\\
1.5 -1.5 0.0266927 0.0266927\\
1.5 -1.25 0.0480234 0.0480234\\
1.5 -1 0.06814 0.06814\\
1.5 -0.75 0.0888448 0.0888448\\
1.5 -0.5 0.114325 0.114325\\
1.5 -0.25 0.14648 0.14648\\
1.5 0 0.157633 0.157633\\
1.5 0.25 0.151931 0.151931\\
1.5 0.5 0.124789 0.124789\\
1.5 0.75 0.0911554 0.0911554\\
1.5 1 0.0669765 0.0669765\\
1.5 1.25 0.0351116 0.0351116\\
1.5 1.5 0.0195734 0.0195734\\
1.5 1.75 0.00764212 0.00764212\\
1.5 2 nan nan\\
1.75 -2 nan nan\\
1.75 -1.75 nan nan\\
1.75 -1.5 0.00875617 0.00875617\\
1.75 -1.25 0.0181032 0.0181032\\
1.75 -1 0.0380423 0.0380423\\
1.75 -0.75 0.0539755 0.0539755\\
1.75 -0.5 0.0624233 0.0624233\\
1.75 -0.25 0.0788088 0.0788088\\
1.75 0 0.0843209 0.0843209\\
1.75 0.25 0.0843477 0.0843477\\
1.75 0.5 0.0688896 0.0688896\\
1.75 0.75 0.0543962 0.0543962\\
1.75 1 0.0294954 0.0294954\\
1.75 1.25 0.0196176 0.0196176\\
1.75 1.5 0.0100945 0.0100945\\
1.75 1.75 0.00426162 0.00426162\\
1.75 2 nan nan\\
2 -2 nan nan\\
2 -1.75 nan nan\\
2 -1.5 nan nan\\
2 -1.25 nan nan\\
2 -1 nan nan\\
2 -0.75 nan nan\\
2 -0.5 nan nan\\
2 -0.25 nan nan\\
2 0 nan nan\\
2 0.25 nan nan\\
2 0.5 nan nan\\
2 0.75 nan nan\\
2 1 nan nan\\
2 1.25 nan nan\\
2 1.5 nan nan\\
2 1.75 nan nan\\
2 2 nan nan\\
};
\addplot3 [color=mycolor1,only marks,mark=o,mark options={solid}]
table[row sep=crcr] {%
0.978912 1.36588 0.0581214\\
-1.04173 1.63719 -0.0241201\\
-1.99868 -1.43552 -0.00468713\\
-0.914795 1.02721 -0.137922\\
1.10317 1.8357 0.0112366\\
1.9947 -0.882338 0.017131\\
0.849467 0.627946 0.2783\\
-1.16315 1.95743 -0.00651708\\
-1.98809 -0.351526 -0.0337461\\
-0.783013 0.176084 -0.411181\\
1.22159 1.99996 0.00503185\\
1.97884 0.146292 0.0385926\\
0.715522 -0.319332 0.387249\\
-1.27841 1.96243 -0.00530112\\
-1.96697 0.601151 -0.0286141\\
-0.647083 -0.848387 -0.207265\\
1.33353 1.84559 0.00747136\\
1.95249 1.00395 0.0157481\\
0.577786 -1.40049 0.0582062\\
-1.38689 1.65178 -0.0132364\\
-1.93543 1.34662 -0.00745438\\
-0.507725 -1.96459 -0.00826907\\
1.43841 1.38488 0.0266921\\
1.9158 1.62231 0.00351025\\
0.436991 -1.47059 0.0415255\\
-1.48803 1.05023 -0.0539462\\
-1.89364 1.8255 -0.00187371\\
-0.365677 -0.916377 -0.138142\\
1.53567 0.654536 0.0946338\\
1.86897 1.95213 0.00125773\\
0.29388 -0.383849 0.232634\\
-1.58128 0.205707 -0.124365\\
-1.84182 1.99965 -0.00113613\\
-0.221693 0.116331 -0.208223\\
1.6248 -0.287269 0.106766\\
1.81223 1.96712 0.00141708\\
0.149212 0.574153 0.104947\\
-1.66616 -0.814526 -0.053449\\
-1.78024 1.85518 -0.00239541\\
-0.0765338 0.980453 -0.0290956\\
1.70532 -1.36551 0.0144224\\
1.74589 1.66609 0.00516055\\
0.00375412 1.3271 0.000645098\\
-1.74222 -1.92919 -0.0020255\\
-1.70923 1.40361 -0.0128353\\
0.0690305 1.60715 0.00519056\\
1.7768 -1.50571 0.00783329\\
1.6703 1.07302 0.0324427\\
-0.141724 1.81501 -0.00515275\\
-1.80904 -0.950501 -0.0277845\\
-1.62917 0.680917 -0.0720956\\
0.214229 1.94651 0.00462858\\
1.83888 -0.416299 0.0525694\\
1.58587 0.235156 0.121341\\
-0.286451 1.99902 -0.00485219\\
-1.86628 0.086204 -0.0568986\\
-1.54047 -0.255341 -0.134503\\
0.358293 1.97149 0.0064637\\
1.89121 0.546952 0.0392182\\
1.49303 -0.780758 0.0873419\\
-0.429661 1.86447 -0.0110467\\
-1.91363 0.956723 -0.0196769\\
-1.44362 -1.33058 -0.0305828\\
0.500459 1.6801 0.0231574\\
1.93352 1.30731 0.00832707\\
1.39229 -1.8938 0.00554985\\
-0.570594 1.42208 -0.0545321\\
-1.95085 1.59171 -0.00344407\\
-1.33912 -1.54086 -0.0207444\\
0.639974 1.09556 0.127945\\
1.9656 1.80422 0.00159166\\
1.28417 -0.984707 0.0936089\\
-0.708505 0.707088 -0.260136\\
-1.97774 1.94059 -0.000916126\\
-1.22752 -0.448873 -0.222394\\
0.776098 0.264431 0.396243\\
1.98726 1.99808 0.000706805\\
1.16925 0.0559138 0.297034\\
-0.842663 -0.223549 -0.394063\\
-1.99414 1.97555 -0.000754688\\
-1.10943 0.519552 -0.247358\\
0.908112 -0.747085 0.227822\\
1.99839 1.87346 0.00110153\\
1.04813 0.932761 0.14637\\
-0.972358 -1.2957 -0.0704859\\
-1.99999 1.69383 -0.00207898\\
-0.985452 1.28727 -0.071159\\
1.03531 -1.85841 0.0112111\\
1.99893 1.44028 0.00461924\\
0.921466 1.57599 0.0328888\\
-1.0969 -1.57605 -0.0274707\\
-1.99523 1.11786 -0.0106753\\
-0.856258 1.79313 -0.0165119\\
1.15703 -1.01899 0.107398\\
1.98889 0.733047 0.0222487\\
0.789916 1.93435 0.0100367\\
-1.21563 -0.481569 -0.219938\\
-1.97991 0.293527 -0.0360386\\
-0.722528 1.99683 -0.00795173\\
1.27262 0.0254626 0.251796\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -10,
xmax= 10,
tick align=outside,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -10,
ymax= 10,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -1,
zmax= 1,
view={ 45}{22.5},
axis background/.style={fill=white}
]
\addplot3[area legend,solid,draw=black,fill=black,forget plot]
table[row sep=crcr] {%
x y z\\
-10 -10 0\\
-9.9 -9.9 0.457536\\
-9.8 -9.8 0\\
-9.7 -9.7 0.271761\\
-9.6 -9.6 0\\
-9.5 -9.5 0.0751511\\
-9.4 -9.4 -0\\
-9.3 -9.3 -0.124454\\
-9.2 -9.2 -0\\
-9.1 -9.1 -0.319098\\
-9 -9 -0\\
-8.9 -8.9 -0.501021\\
-8.8 -8.8 -0\\
-8.7 -8.7 -0.662969\\
-8.6 -8.6 -0\\
-8.5 -8.5 -0.798487\\
-8.4 -8.4 -0\\
-8.3 -8.3 -0.902172\\
-8.2 -8.2 -0\\
-8.1 -8.1 -0.96989\\
-8 -8 -0\\
-7.9 -7.9 -0.998941\\
-7.8 -7.8 -0\\
-7.7 -7.7 -0.988168\\
-7.6 -7.6 -0\\
-7.5 -7.5 -0.938\\
-7.4 -7.4 -0\\
-7.3 -7.3 -0.850437\\
-7.2 -7.2 -0\\
-7.1 -7.1 -0.728969\\
-7 -7 -0\\
-6.9 -6.9 -0.57844\\
-6.8 -6.8 -0\\
-6.7 -6.7 -0.40485\\
-6.6 -6.6 -0\\
-6.5 -6.5 -0.21512\\
-6.4 -6.4 -0\\
-6.3 -6.3 -0.0168139\\
-6.2 -6.2 0\\
-6.1 -6.1 0.182163\\
-6 -6 0\\
-5.9 -5.9 0.373877\\
-5.8 -5.8 0\\
-5.7 -5.7 0.550686\\
-5.6 -5.6 0\\
-5.5 -5.5 0.70554\\
-5.4 -5.4 0\\
-5.3 -5.3 0.832267\\
-5.2 -5.2 0\\
-5.1 -5.1 0.925815\\
-5 -5 0\\
-4.9 -4.9 0.982453\\
-4.8 -4.8 0\\
-4.7 -4.7 0.999923\\
-4.6 -4.6 0\\
-4.5 -4.5 0.97753\\
-4.4 -4.4 0\\
-4.3 -4.3 0.916166\\
-4.2 -4.2 0\\
-4.1 -4.1 0.818277\\
-4 -4 0\\
-3.9 -3.9 0.687766\\
-3.8 -3.8 0\\
-3.7 -3.7 0.529836\\
-3.6 -3.6 0\\
-3.5 -3.5 0.350783\\
-3.4 -3.4 0\\
-3.3 -3.3 0.157746\\
-3.2 -3.2 0\\
-3.1 -3.1 -0.0415807\\
-3 -3 -0\\
-2.9 -2.9 -0.239249\\
-2.8 -2.8 -0\\
-2.7 -2.7 -0.42738\\
-2.6 -2.6 -0\\
-2.5 -2.5 -0.598472\\
-2.4 -2.4 -0\\
-2.3 -2.3 -0.745705\\
-2.2 -2.2 -0\\
-2.1 -2.1 -0.863209\\
-2 -2 -0\\
-1.9 -1.9 -0.9463\\
-1.8 -1.8 -0\\
-1.7 -1.7 -0.991665\\
-1.6 -1.6 -0\\
-1.5 -1.5 -0.997495\\
-1.4 -1.4 -0\\
-1.3 -1.3 -0.963558\\
-1.2 -1.2 -0\\
-1.1 -1.1 -0.891207\\
-1 -1 -0\\
-0.9 -0.9 -0.783327\\
-0.8 -0.8 -0\\
-0.7 -0.7 -0.644218\\
-0.6 -0.6 -0\\
-0.5 -0.5 -0.479426\\
-0.4 -0.4 -0\\
-0.3 -0.3 -0.29552\\
-0.2 -0.2 -0\\
-0.1 -0.1 -0.0998334\\
0 0 0\\
0.1 0.1 0.0998334\\
0.2 0.2 0\\
0.3 0.3 0.29552\\
0.4 0.4 0\\
0.5 0.5 0.479426\\
0.6 0.6 0\\
0.7 0.7 0.644218\\
0.8 0.8 0\\
0.9 0.9 0.783327\\
1 1 0\\
1.1 1.1 0.891207\\
1.2 1.2 0\\
1.3 1.3 0.963558\\
1.4 1.4 0\\
1.5 1.5 0.997495\\
1.6 1.6 0\\
1.7 1.7 0.991665\\
1.8 1.8 0\\
1.9 1.9 0.9463\\
2 2 0\\
2.1 2.1 0.863209\\
2.2 2.2 0\\
2.3 2.3 0.745705\\
2.4 2.4 0\\
2.5 2.5 0.598472\\
2.6 2.6 0\\
2.7 2.7 0.42738\\
2.8 2.8 0\\
2.9 2.9 0.239249\\
3 3 0\\
3.1 3.1 0.0415807\\
3.2 3.2 -0\\
3.3 3.3 -0.157746\\
3.4 3.4 -0\\
3.5 3.5 -0.350783\\
3.6 3.6 -0\\
3.7 3.7 -0.529836\\
3.8 3.8 -0\\
3.9 3.9 -0.687766\\
4 4 -0\\
4.1 4.1 -0.818277\\
4.2 4.2 -0\\
4.3 4.3 -0.916166\\
4.4 4.4 -0\\
4.5 4.5 -0.97753\\
4.6 4.6 -0\\
4.7 4.7 -0.999923\\
4.8 4.8 -0\\
4.9 4.9 -0.982453\\
5 5 -0\\
5.1 5.1 -0.925815\\
5.2 5.2 -0\\
5.3 5.3 -0.832267\\
5.4 5.4 -0\\
5.5 5.5 -0.70554\\
5.6 5.6 -0\\
5.7 5.7 -0.550686\\
5.8 5.8 -0\\
5.9 5.9 -0.373877\\
6 6 -0\\
6.1 6.1 -0.182163\\
6.2 6.2 -0\\
6.3 6.3 0.0168139\\
6.4 6.4 0\\
6.5 6.5 0.21512\\
6.6 6.6 0\\
6.7 6.7 0.40485\\
6.8 6.8 0\\
6.9 6.9 0.57844\\
7 7 0\\
7.1 7.1 0.728969\\
7.2 7.2 0\\
7.3 7.3 0.850437\\
7.4 7.4 0\\
7.5 7.5 0.938\\
7.6 7.6 0\\
7.7 7.7 0.988168\\
7.8 7.8 0\\
7.9 7.9 0.998941\\
8 8 0\\
8.1 8.1 0.96989\\
8.2 8.2 0\\
8.3 8.3 0.902172\\
8.4 8.4 0\\
8.5 8.5 0.798487\\
8.6 8.6 0\\
8.7 8.7 0.662969\\
8.8 8.8 0\\
8.9 8.9 0.501021\\
9 9 0\\
9.1 9.1 0.319098\\
9.2 9.2 0\\
9.3 9.3 0.124454\\
9.4 9.4 0\\
9.5 9.5 -0.0751511\\
9.6 9.6 -0\\
9.7 9.7 -0.271761\\
9.8 9.8 -0\\
9.9 9.9 -0.457536\\
10 10 -0\\
}--cycle;
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=\figureWidth,
height=0.667\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0.5,
xmax= 4.5,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 2,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\draw[dashed, line width=2.0pt, draw=black] (axis cs:0.59,0.35) rectangle (axis cs:4.34,1.72);
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 12,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 12,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
legend style={legend cell align=left,align=left,draw=black}
]
\addplot [color=red,solid]
plot [error bars/.cd, y dir = both, y explicit]
table[row sep=crcr, y error plus index=2, y error minus index=3]{%
1 1 0.233333 0.233333\\
2 2 0.266667 0.266667\\
3 3 0.3 0.3\\
4 4 0.333333 0.333333\\
5 5 0.366667 0.366667\\
6 6 0.4 0.4\\
7 7 0.433333 0.433333\\
8 8 0.466667 0.466667\\
9 9 0.5 0.5\\
10 10 0.533333 0.533333\\
};
\addlegendentry{test1};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
0.8 1.09\\
0.8 0.91\\
nan nan\\
0.8 1\\
1.2 1\\
nan nan\\
1.2 1.09\\
1.2 0.91\\
nan nan\\
1.8 2.09\\
1.8 1.91\\
nan nan\\
1.8 2\\
2.2 2\\
nan nan\\
2.2 2.09\\
2.2 1.91\\
nan nan\\
2.8 3.09\\
2.8 2.91\\
nan nan\\
2.8 3\\
3.2 3\\
nan nan\\
3.2 3.09\\
3.2 2.91\\
nan nan\\
3.8 4.09\\
3.8 3.91\\
nan nan\\
3.8 4\\
4.2 4\\
nan nan\\
4.2 4.09\\
4.2 3.91\\
nan nan\\
4.8 5.09\\
4.8 4.91\\
nan nan\\
4.8 5\\
5.2 5\\
nan nan\\
5.2 5.09\\
5.2 4.91\\
nan nan\\
5.8 6.09\\
5.8 5.91\\
nan nan\\
5.8 6\\
6.2 6\\
nan nan\\
6.2 6.09\\
6.2 5.91\\
nan nan\\
6.8 7.09\\
6.8 6.91\\
nan nan\\
6.8 7\\
7.2 7\\
nan nan\\
7.2 7.09\\
7.2 6.91\\
nan nan\\
7.8 8.09\\
7.8 7.91\\
nan nan\\
7.8 8\\
8.2 8\\
nan nan\\
8.2 8.09\\
8.2 7.91\\
nan nan\\
8.8 9.09\\
8.8 8.91\\
nan nan\\
8.8 9\\
9.2 9\\
nan nan\\
9.2 9.09\\
9.2 8.91\\
nan nan\\
9.8 10.09\\
9.8 9.91\\
nan nan\\
9.8 10\\
10.2 10\\
nan nan\\
10.2 10.09\\
10.2 9.91\\
};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
1 1\\
10 10\\
};
\addplot [color=green,solid]
plot [error bars/.cd, y dir = both, y explicit]
table[row sep=crcr, y error plus index=2, y error minus index=3]{%
1 2 0.2 0.2\\
2 3 0.2 0.2\\
3 4 0.2 0.2\\
4 5 0.2 0.2\\
5 6 0.2 0.2\\
6 7 0.2 0.2\\
7 8 0.2 0.2\\
8 9 0.2 0.2\\
9 10 0.2 0.2\\
10 11 0.2 0.2\\
};
\addlegendentry{test2};
\addplot [color=green,solid,forget plot]
table[row sep=crcr]{%
0.775 2.09\\
0.775 1.91\\
nan nan\\
0.775 2\\
1.225 2\\
nan nan\\
1.225 2.09\\
1.225 1.91\\
nan nan\\
1.75 3.09\\
1.75 2.91\\
nan nan\\
1.75 3\\
2.25 3\\
nan nan\\
2.25 3.09\\
2.25 2.91\\
nan nan\\
2.725 4.09\\
2.725 3.91\\
nan nan\\
2.725 4\\
3.275 4\\
nan nan\\
3.275 4.09\\
3.275 3.91\\
nan nan\\
3.7 5.09\\
3.7 4.91\\
nan nan\\
3.7 5\\
4.3 5\\
nan nan\\
4.3 5.09\\
4.3 4.91\\
nan nan\\
4.675 6.09\\
4.675 5.91\\
nan nan\\
4.675 6\\
5.325 6\\
nan nan\\
5.325 6.09\\
5.325 5.91\\
nan nan\\
5.65 7.09\\
5.65 6.91\\
nan nan\\
5.65 7\\
6.35 7\\
nan nan\\
6.35 7.09\\
6.35 6.91\\
nan nan\\
6.625 8.09\\
6.625 7.91\\
nan nan\\
6.625 8\\
7.375 8\\
nan nan\\
7.375 8.09\\
7.375 7.91\\
nan nan\\
7.6 9.09\\
7.6 8.91\\
nan nan\\
7.6 9\\
8.4 9\\
nan nan\\
8.4 9.09\\
8.4 8.91\\
nan nan\\
8.575 10.09\\
8.575 9.91\\
nan nan\\
8.575 10\\
9.425 10\\
nan nan\\
9.425 10.09\\
9.425 9.91\\
nan nan\\
9.55 11.09\\
9.55 10.91\\
nan nan\\
9.55 11\\
10.45 11\\
nan nan\\
10.45 11.09\\
10.45 10.91\\
};
\addplot [color=green,solid,forget plot]
table[row sep=crcr]{%
1 2\\
10 11\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
colormap={patchmap}{[1pt] rgb(0pt)=(0.75,0.85,0.95); rgb(1224pt)=(0.75,0.85,0.95)},
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=7.12,
xmax=48.48,
tick align=outside,
xlabel={MPG},
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=1436.65,
ymax=5316.35,
ylabel={Weight},
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= 0,
zmax= 40,
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
fill opacity=0.65,shader=flat corner,draw=black,mesh/rows=35]
table[row sep=crcr, colormap name=surfmap, point meta=\thisrow{c}] {%
%
x y z c\\
9.00537 1613.5 0 0\\
9.00537 1613.5 0 1\\
14.3661 1613.5 0 2\\
14.3661 1613.5 0 3\\
nan nan 0 4\\
14.3768 1613.5 0 5\\
14.3768 1613.5 0 6\\
19.7375 1613.5 0 7\\
19.7375 1613.5 0 8\\
nan nan 0 9\\
19.7482 1613.5 0 10\\
19.7482 1613.5 0 11\\
25.1089 1613.5 0 12\\
25.1089 1613.5 0 13\\
nan nan 0 14\\
25.1197 1613.5 0 15\\
25.1197 1613.5 0 16\\
30.4803 1613.5 0 17\\
30.4803 1613.5 0 18\\
nan nan 0 19\\
30.4911 1613.5 0 20\\
30.4911 1613.5 0 21\\
35.8518 1613.5 0 22\\
35.8518 1613.5 0 23\\
nan nan 0 24\\
35.8625 1613.5 0 25\\
35.8625 1613.5 0 26\\
41.2232 1613.5 0 27\\
41.2232 1613.5 0 28\\
nan nan 0 29\\
41.2339 1613.5 0 30\\
41.2339 1613.5 0 31\\
46.5946 1613.5 0 32\\
46.5946 1613.5 0 33\\
nan nan 0 34\\
9.00537 1613.5 0 35\\
9.00537 1613.5 0 36\\
14.3661 1613.5 0 37\\
14.3661 1613.5 0 38\\
nan nan 0 39\\
14.3768 1613.5 0 40\\
14.3768 1613.5 0 41\\
19.7375 1613.5 0 42\\
19.7375 1613.5 0 43\\
nan nan 0 44\\
19.7482 1613.5 0 45\\
19.7482 1613.5 2 46\\
25.1089 1613.5 2 47\\
25.1089 1613.5 0 48\\
nan nan 0 49\\
25.1197 1613.5 0 50\\
25.1197 1613.5 16 51\\
30.4803 1613.5 16 52\\
30.4803 1613.5 0 53\\
nan nan 0 54\\
30.4911 1613.5 0 55\\
30.4911 1613.5 26 56\\
35.8518 1613.5 26 57\\
35.8518 1613.5 0 58\\
nan nan 0 59\\
35.8625 1613.5 0 60\\
35.8625 1613.5 16 61\\
41.2232 1613.5 16 62\\
41.2232 1613.5 0 63\\
nan nan 0 64\\
41.2339 1613.5 0 65\\
41.2339 1613.5 4 66\\
46.5946 1613.5 4 67\\
46.5946 1613.5 0 68\\
nan nan 0 69\\
9.00537 2116.35 0 70\\
9.00537 2116.35 0 71\\
14.3661 2116.35 0 72\\
14.3661 2116.35 0 73\\
nan nan 0 74\\
14.3768 2116.35 0 75\\
14.3768 2116.35 0 76\\
19.7375 2116.35 0 77\\
19.7375 2116.35 0 78\\
nan nan 0 79\\
19.7482 2116.35 0 80\\
19.7482 2116.35 2 81\\
25.1089 2116.35 2 82\\
25.1089 2116.35 0 83\\
nan nan 0 84\\
25.1197 2116.35 0 85\\
25.1197 2116.35 16 86\\
30.4803 2116.35 16 87\\
30.4803 2116.35 0 88\\
nan nan 0 89\\
30.4911 2116.35 0 90\\
30.4911 2116.35 26 91\\
35.8518 2116.35 26 92\\
35.8518 2116.35 0 93\\
nan nan 0 94\\
35.8625 2116.35 0 95\\
35.8625 2116.35 16 96\\
41.2232 2116.35 16 97\\
41.2232 2116.35 0 98\\
nan nan 0 99\\
41.2339 2116.35 0 100\\
41.2339 2116.35 4 101\\
46.5946 2116.35 4 102\\
46.5946 2116.35 0 103\\
nan nan 0 104\\
9.00537 2116.35 0 105\\
9.00537 2116.35 0 106\\
14.3661 2116.35 0 107\\
14.3661 2116.35 0 108\\
nan nan 0 109\\
14.3768 2116.35 0 110\\
14.3768 2116.35 0 111\\
19.7375 2116.35 0 112\\
19.7375 2116.35 0 113\\
nan nan 0 114\\
19.7482 2116.35 0 115\\
19.7482 2116.35 0 116\\
25.1089 2116.35 0 117\\
25.1089 2116.35 0 118\\
nan nan 0 119\\
25.1197 2116.35 0 120\\
25.1197 2116.35 0 121\\
30.4803 2116.35 0 122\\
30.4803 2116.35 0 123\\
nan nan 0 124\\
30.4911 2116.35 0 125\\
30.4911 2116.35 0 126\\
35.8518 2116.35 0 127\\
35.8518 2116.35 0 128\\
nan nan 0 129\\
35.8625 2116.35 0 130\\
35.8625 2116.35 0 131\\
41.2232 2116.35 0 132\\
41.2232 2116.35 0 133\\
nan nan 0 134\\
41.2339 2116.35 0 135\\
41.2339 2116.35 0 136\\
46.5946 2116.35 0 137\\
46.5946 2116.35 0 138\\
nan nan 0 139\\
nan nan 0 140\\
nan nan 0 141\\
nan nan 0 142\\
nan nan 0 143\\
nan nan 0 144\\
nan nan 0 145\\
nan nan 0 146\\
nan nan 0 147\\
nan nan 0 148\\
nan nan 0 149\\
nan nan 0 150\\
nan nan 0 151\\
nan nan 0 152\\
nan nan 0 153\\
nan nan 0 154\\
nan nan 0 155\\
nan nan 0 156\\
nan nan 0 157\\
nan nan 0 158\\
nan nan 0 159\\
nan nan 0 160\\
nan nan 0 161\\
nan nan 0 162\\
nan nan 0 163\\
nan nan 0 164\\
nan nan 0 165\\
nan nan 0 166\\
nan nan 0 167\\
nan nan 0 168\\
nan nan 0 169\\
nan nan 0 170\\
nan nan 0 171\\
nan nan 0 172\\
nan nan 0 173\\
nan nan 0 174\\
9.00537 2117.36 0 175\\
9.00537 2117.36 0 176\\
14.3661 2117.36 0 177\\
14.3661 2117.36 0 178\\
nan nan 0 179\\
14.3768 2117.36 0 180\\
14.3768 2117.36 0 181\\
19.7375 2117.36 0 182\\
19.7375 2117.36 0 183\\
nan nan 0 184\\
19.7482 2117.36 0 185\\
19.7482 2117.36 0 186\\
25.1089 2117.36 0 187\\
25.1089 2117.36 0 188\\
nan nan 0 189\\
25.1197 2117.36 0 190\\
25.1197 2117.36 0 191\\
30.4803 2117.36 0 192\\
30.4803 2117.36 0 193\\
nan nan 0 194\\
30.4911 2117.36 0 195\\
30.4911 2117.36 0 196\\
35.8518 2117.36 0 197\\
35.8518 2117.36 0 198\\
nan nan 0 199\\
35.8625 2117.36 0 200\\
35.8625 2117.36 0 201\\
41.2232 2117.36 0 202\\
41.2232 2117.36 0 203\\
nan nan 0 204\\
41.2339 2117.36 0 205\\
41.2339 2117.36 0 206\\
46.5946 2117.36 0 207\\
46.5946 2117.36 0 208\\
nan nan 0 209\\
9.00537 2117.36 0 210\\
9.00537 2117.36 0 211\\
14.3661 2117.36 0 212\\
14.3661 2117.36 0 213\\
nan nan 0 214\\
14.3768 2117.36 0 215\\
14.3768 2117.36 3 216\\
19.7375 2117.36 3 217\\
19.7375 2117.36 0 218\\
nan nan 0 219\\
19.7482 2117.36 0 220\\
19.7482 2117.36 33 221\\
25.1089 2117.36 33 222\\
25.1089 2117.36 0 223\\
nan nan 0 224\\
25.1197 2117.36 0 225\\
25.1197 2117.36 36 226\\
30.4803 2117.36 36 227\\
30.4803 2117.36 0 228\\
nan nan 0 229\\
30.4911 2117.36 0 230\\
30.4911 2117.36 22 231\\
35.8518 2117.36 22 232\\
35.8518 2117.36 0 233\\
nan nan 0 234\\
35.8625 2117.36 0 235\\
35.8625 2117.36 7 236\\
41.2232 2117.36 7 237\\
41.2232 2117.36 0 238\\
nan nan 0 239\\
41.2339 2117.36 0 240\\
41.2339 2117.36 3 241\\
46.5946 2117.36 3 242\\
46.5946 2117.36 0 243\\
nan nan 0 244\\
9.00537 2620.21 0 245\\
9.00537 2620.21 0 246\\
14.3661 2620.21 0 247\\
14.3661 2620.21 0 248\\
nan nan 0 249\\
14.3768 2620.21 0 250\\
14.3768 2620.21 3 251\\
19.7375 2620.21 3 252\\
19.7375 2620.21 0 253\\
nan nan 0 254\\
19.7482 2620.21 0 255\\
19.7482 2620.21 33 256\\
25.1089 2620.21 33 257\\
25.1089 2620.21 0 258\\
nan nan 0 259\\
25.1197 2620.21 0 260\\
25.1197 2620.21 36 261\\
30.4803 2620.21 36 262\\
30.4803 2620.21 0 263\\
nan nan 0 264\\
30.4911 2620.21 0 265\\
30.4911 2620.21 22 266\\
35.8518 2620.21 22 267\\
35.8518 2620.21 0 268\\
nan nan 0 269\\
35.8625 2620.21 0 270\\
35.8625 2620.21 7 271\\
41.2232 2620.21 7 272\\
41.2232 2620.21 0 273\\
nan nan 0 274\\
41.2339 2620.21 0 275\\
41.2339 2620.21 3 276\\
46.5946 2620.21 3 277\\
46.5946 2620.21 0 278\\
nan nan 0 279\\
9.00537 2620.21 0 280\\
9.00537 2620.21 0 281\\
14.3661 2620.21 0 282\\
14.3661 2620.21 0 283\\
nan nan 0 284\\
14.3768 2620.21 0 285\\
14.3768 2620.21 0 286\\
19.7375 2620.21 0 287\\
19.7375 2620.21 0 288\\
nan nan 0 289\\
19.7482 2620.21 0 290\\
19.7482 2620.21 0 291\\
25.1089 2620.21 0 292\\
25.1089 2620.21 0 293\\
nan nan 0 294\\
25.1197 2620.21 0 295\\
25.1197 2620.21 0 296\\
30.4803 2620.21 0 297\\
30.4803 2620.21 0 298\\
nan nan 0 299\\
30.4911 2620.21 0 300\\
30.4911 2620.21 0 301\\
35.8518 2620.21 0 302\\
35.8518 2620.21 0 303\\
nan nan 0 304\\
35.8625 2620.21 0 305\\
35.8625 2620.21 0 306\\
41.2232 2620.21 0 307\\
41.2232 2620.21 0 308\\
nan nan 0 309\\
41.2339 2620.21 0 310\\
41.2339 2620.21 0 311\\
46.5946 2620.21 0 312\\
46.5946 2620.21 0 313\\
nan nan 0 314\\
nan nan 0 315\\
nan nan 0 316\\
nan nan 0 317\\
nan nan 0 318\\
nan nan 0 319\\
nan nan 0 320\\
nan nan 0 321\\
nan nan 0 322\\
nan nan 0 323\\
nan nan 0 324\\
nan nan 0 325\\
nan nan 0 326\\
nan nan 0 327\\
nan nan 0 328\\
nan nan 0 329\\
nan nan 0 330\\
nan nan 0 331\\
nan nan 0 332\\
nan nan 0 333\\
nan nan 0 334\\
nan nan 0 335\\
nan nan 0 336\\
nan nan 0 337\\
nan nan 0 338\\
nan nan 0 339\\
nan nan 0 340\\
nan nan 0 341\\
nan nan 0 342\\
nan nan 0 343\\
nan nan 0 344\\
nan nan 0 345\\
nan nan 0 346\\
nan nan 0 347\\
nan nan 0 348\\
nan nan 0 349\\
9.00537 2621.22 0 350\\
9.00537 2621.22 0 351\\
14.3661 2621.22 0 352\\
14.3661 2621.22 0 353\\
nan nan 0 354\\
14.3768 2621.22 0 355\\
14.3768 2621.22 0 356\\
19.7375 2621.22 0 357\\
19.7375 2621.22 0 358\\
nan nan 0 359\\
19.7482 2621.22 0 360\\
19.7482 2621.22 0 361\\
25.1089 2621.22 0 362\\
25.1089 2621.22 0 363\\
nan nan 0 364\\
25.1197 2621.22 0 365\\
25.1197 2621.22 0 366\\
30.4803 2621.22 0 367\\
30.4803 2621.22 0 368\\
nan nan 0 369\\
30.4911 2621.22 0 370\\
30.4911 2621.22 0 371\\
35.8518 2621.22 0 372\\
35.8518 2621.22 0 373\\
nan nan 0 374\\
35.8625 2621.22 0 375\\
35.8625 2621.22 0 376\\
41.2232 2621.22 0 377\\
41.2232 2621.22 0 378\\
nan nan 0 379\\
41.2339 2621.22 0 380\\
41.2339 2621.22 0 381\\
46.5946 2621.22 0 382\\
46.5946 2621.22 0 383\\
nan nan 0 384\\
9.00537 2621.22 0 385\\
9.00537 2621.22 1 386\\
14.3661 2621.22 1 387\\
14.3661 2621.22 0 388\\
nan nan 0 389\\
14.3768 2621.22 0 390\\
14.3768 2621.22 12 391\\
19.7375 2621.22 12 392\\
19.7375 2621.22 0 393\\
nan nan 0 394\\
19.7482 2621.22 0 395\\
19.7482 2621.22 40 396\\
25.1089 2621.22 40 397\\
25.1089 2621.22 0 398\\
nan nan 0 399\\
25.1197 2621.22 0 400\\
25.1197 2621.22 15 401\\
30.4803 2621.22 15 402\\
30.4803 2621.22 0 403\\
nan nan 0 404\\
30.4911 2621.22 0 405\\
30.4911 2621.22 4 406\\
35.8518 2621.22 4 407\\
35.8518 2621.22 0 408\\
nan nan 0 409\\
35.8625 2621.22 0 410\\
35.8625 2621.22 2 411\\
41.2232 2621.22 2 412\\
41.2232 2621.22 0 413\\
nan nan 0 414\\
41.2339 2621.22 0 415\\
41.2339 2621.22 0 416\\
46.5946 2621.22 0 417\\
46.5946 2621.22 0 418\\
nan nan 0 419\\
9.00537 3124.07 0 420\\
9.00537 3124.07 1 421\\
14.3661 3124.07 1 422\\
14.3661 3124.07 0 423\\
nan nan 0 424\\
14.3768 3124.07 0 425\\
14.3768 3124.07 12 426\\
19.7375 3124.07 12 427\\
19.7375 3124.07 0 428\\
nan nan 0 429\\
19.7482 3124.07 0 430\\
19.7482 3124.07 40 431\\
25.1089 3124.07 40 432\\
25.1089 3124.07 0 433\\
nan nan 0 434\\
25.1197 3124.07 0 435\\
25.1197 3124.07 15 436\\
30.4803 3124.07 15 437\\
30.4803 3124.07 0 438\\
nan nan 0 439\\
30.4911 3124.07 0 440\\
30.4911 3124.07 4 441\\
35.8518 3124.07 4 442\\
35.8518 3124.07 0 443\\
nan nan 0 444\\
35.8625 3124.07 0 445\\
35.8625 3124.07 2 446\\
41.2232 3124.07 2 447\\
41.2232 3124.07 0 448\\
nan nan 0 449\\
41.2339 3124.07 0 450\\
41.2339 3124.07 0 451\\
46.5946 3124.07 0 452\\
46.5946 3124.07 0 453\\
nan nan 0 454\\
9.00537 3124.07 0 455\\
9.00537 3124.07 0 456\\
14.3661 3124.07 0 457\\
14.3661 3124.07 0 458\\
nan nan 0 459\\
14.3768 3124.07 0 460\\
14.3768 3124.07 0 461\\
19.7375 3124.07 0 462\\
19.7375 3124.07 0 463\\
nan nan 0 464\\
19.7482 3124.07 0 465\\
19.7482 3124.07 0 466\\
25.1089 3124.07 0 467\\
25.1089 3124.07 0 468\\
nan nan 0 469\\
25.1197 3124.07 0 470\\
25.1197 3124.07 0 471\\
30.4803 3124.07 0 472\\
30.4803 3124.07 0 473\\
nan nan 0 474\\
30.4911 3124.07 0 475\\
30.4911 3124.07 0 476\\
35.8518 3124.07 0 477\\
35.8518 3124.07 0 478\\
nan nan 0 479\\
35.8625 3124.07 0 480\\
35.8625 3124.07 0 481\\
41.2232 3124.07 0 482\\
41.2232 3124.07 0 483\\
nan nan 0 484\\
41.2339 3124.07 0 485\\
41.2339 3124.07 0 486\\
46.5946 3124.07 0 487\\
46.5946 3124.07 0 488\\
nan nan 0 489\\
nan nan 0 490\\
nan nan 0 491\\
nan nan 0 492\\
nan nan 0 493\\
nan nan 0 494\\
nan nan 0 495\\
nan nan 0 496\\
nan nan 0 497\\
nan nan 0 498\\
nan nan 0 499\\
nan nan 0 500\\
nan nan 0 501\\
nan nan 0 502\\
nan nan 0 503\\
nan nan 0 504\\
nan nan 0 505\\
nan nan 0 506\\
nan nan 0 507\\
nan nan 0 508\\
nan nan 0 509\\
nan nan 0 510\\
nan nan 0 511\\
nan nan 0 512\\
nan nan 0 513\\
nan nan 0 514\\
nan nan 0 515\\
nan nan 0 516\\
nan nan 0 517\\
nan nan 0 518\\
nan nan 0 519\\
nan nan 0 520\\
nan nan 0 521\\
nan nan 0 522\\
nan nan 0 523\\
nan nan 0 524\\
9.00537 3125.08 0 525\\
9.00537 3125.08 0 526\\
14.3661 3125.08 0 527\\
14.3661 3125.08 0 528\\
nan nan 0 529\\
14.3768 3125.08 0 530\\
14.3768 3125.08 0 531\\
19.7375 3125.08 0 532\\
19.7375 3125.08 0 533\\
nan nan 0 534\\
19.7482 3125.08 0 535\\
19.7482 3125.08 0 536\\
25.1089 3125.08 0 537\\
25.1089 3125.08 0 538\\
nan nan 0 539\\
25.1197 3125.08 0 540\\
25.1197 3125.08 0 541\\
30.4803 3125.08 0 542\\
30.4803 3125.08 0 543\\
nan nan 0 544\\
30.4911 3125.08 0 545\\
30.4911 3125.08 0 546\\
35.8518 3125.08 0 547\\
35.8518 3125.08 0 548\\
nan nan 0 549\\
35.8625 3125.08 0 550\\
35.8625 3125.08 0 551\\
41.2232 3125.08 0 552\\
41.2232 3125.08 0 553\\
nan nan 0 554\\
41.2339 3125.08 0 555\\
41.2339 3125.08 0 556\\
46.5946 3125.08 0 557\\
46.5946 3125.08 0 558\\
nan nan 0 559\\
9.00537 3125.08 0 560\\
9.00537 3125.08 2 561\\
14.3661 3125.08 2 562\\
14.3661 3125.08 0 563\\
nan nan 0 564\\
14.3768 3125.08 0 565\\
14.3768 3125.08 37 566\\
19.7375 3125.08 37 567\\
19.7375 3125.08 0 568\\
nan nan 0 569\\
19.7482 3125.08 0 570\\
19.7482 3125.08 15 571\\
25.1089 3125.08 15 572\\
25.1089 3125.08 0 573\\
nan nan 0 574\\
25.1197 3125.08 0 575\\
25.1197 3125.08 4 576\\
30.4803 3125.08 4 577\\
30.4803 3125.08 0 578\\
nan nan 0 579\\
30.4911 3125.08 0 580\\
30.4911 3125.08 1 581\\
35.8518 3125.08 1 582\\
35.8518 3125.08 0 583\\
nan nan 0 584\\
35.8625 3125.08 0 585\\
35.8625 3125.08 0 586\\
41.2232 3125.08 0 587\\
41.2232 3125.08 0 588\\
nan nan 0 589\\
41.2339 3125.08 0 590\\
41.2339 3125.08 0 591\\
46.5946 3125.08 0 592\\
46.5946 3125.08 0 593\\
nan nan 0 594\\
9.00537 3627.92 0 595\\
9.00537 3627.92 2 596\\
14.3661 3627.92 2 597\\
14.3661 3627.92 0 598\\
nan nan 0 599\\
14.3768 3627.92 0 600\\
14.3768 3627.92 37 601\\
19.7375 3627.92 37 602\\
19.7375 3627.92 0 603\\
nan nan 0 604\\
19.7482 3627.92 0 605\\
19.7482 3627.92 15 606\\
25.1089 3627.92 15 607\\
25.1089 3627.92 0 608\\
nan nan 0 609\\
25.1197 3627.92 0 610\\
25.1197 3627.92 4 611\\
30.4803 3627.92 4 612\\
30.4803 3627.92 0 613\\
nan nan 0 614\\
30.4911 3627.92 0 615\\
30.4911 3627.92 1 616\\
35.8518 3627.92 1 617\\
35.8518 3627.92 0 618\\
nan nan 0 619\\
35.8625 3627.92 0 620\\
35.8625 3627.92 0 621\\
41.2232 3627.92 0 622\\
41.2232 3627.92 0 623\\
nan nan 0 624\\
41.2339 3627.92 0 625\\
41.2339 3627.92 0 626\\
46.5946 3627.92 0 627\\
46.5946 3627.92 0 628\\
nan nan 0 629\\
9.00537 3627.92 0 630\\
9.00537 3627.92 0 631\\
14.3661 3627.92 0 632\\
14.3661 3627.92 0 633\\
nan nan 0 634\\
14.3768 3627.92 0 635\\
14.3768 3627.92 0 636\\
19.7375 3627.92 0 637\\
19.7375 3627.92 0 638\\
nan nan 0 639\\
19.7482 3627.92 0 640\\
19.7482 3627.92 0 641\\
25.1089 3627.92 0 642\\
25.1089 3627.92 0 643\\
nan nan 0 644\\
25.1197 3627.92 0 645\\
25.1197 3627.92 0 646\\
30.4803 3627.92 0 647\\
30.4803 3627.92 0 648\\
nan nan 0 649\\
30.4911 3627.92 0 650\\
30.4911 3627.92 0 651\\
35.8518 3627.92 0 652\\
35.8518 3627.92 0 653\\
nan nan 0 654\\
35.8625 3627.92 0 655\\
35.8625 3627.92 0 656\\
41.2232 3627.92 0 657\\
41.2232 3627.92 0 658\\
nan nan 0 659\\
41.2339 3627.92 0 660\\
41.2339 3627.92 0 661\\
46.5946 3627.92 0 662\\
46.5946 3627.92 0 663\\
nan nan 0 664\\
nan nan 0 665\\
nan nan 0 666\\
nan nan 0 667\\
nan nan 0 668\\
nan nan 0 669\\
nan nan 0 670\\
nan nan 0 671\\
nan nan 0 672\\
nan nan 0 673\\
nan nan 0 674\\
nan nan 0 675\\
nan nan 0 676\\
nan nan 0 677\\
nan nan 0 678\\
nan nan 0 679\\
nan nan 0 680\\
nan nan 0 681\\
nan nan 0 682\\
nan nan 0 683\\
nan nan 0 684\\
nan nan 0 685\\
nan nan 0 686\\
nan nan 0 687\\
nan nan 0 688\\
nan nan 0 689\\
nan nan 0 690\\
nan nan 0 691\\
nan nan 0 692\\
nan nan 0 693\\
nan nan 0 694\\
nan nan 0 695\\
nan nan 0 696\\
nan nan 0 697\\
nan nan 0 698\\
nan nan 0 699\\
9.00537 3628.93 0 700\\
9.00537 3628.93 0 701\\
14.3661 3628.93 0 702\\
14.3661 3628.93 0 703\\
nan nan 0 704\\
14.3768 3628.93 0 705\\
14.3768 3628.93 0 706\\
19.7375 3628.93 0 707\\
19.7375 3628.93 0 708\\
nan nan 0 709\\
19.7482 3628.93 0 710\\
19.7482 3628.93 0 711\\
25.1089 3628.93 0 712\\
25.1089 3628.93 0 713\\
nan nan 0 714\\
25.1197 3628.93 0 715\\
25.1197 3628.93 0 716\\
30.4803 3628.93 0 717\\
30.4803 3628.93 0 718\\
nan nan 0 719\\
30.4911 3628.93 0 720\\
30.4911 3628.93 0 721\\
35.8518 3628.93 0 722\\
35.8518 3628.93 0 723\\
nan nan 0 724\\
35.8625 3628.93 0 725\\
35.8625 3628.93 0 726\\
41.2232 3628.93 0 727\\
41.2232 3628.93 0 728\\
nan nan 0 729\\
41.2339 3628.93 0 730\\
41.2339 3628.93 0 731\\
46.5946 3628.93 0 732\\
46.5946 3628.93 0 733\\
nan nan 0 734\\
9.00537 3628.93 0 735\\
9.00537 3628.93 14 736\\
14.3661 3628.93 14 737\\
14.3661 3628.93 0 738\\
nan nan 0 739\\
14.3768 3628.93 0 740\\
14.3768 3628.93 27 741\\
19.7375 3628.93 27 742\\
19.7375 3628.93 0 743\\
nan nan 0 744\\
19.7482 3628.93 0 745\\
19.7482 3628.93 2 746\\
25.1089 3628.93 2 747\\
25.1089 3628.93 0 748\\
nan nan 0 749\\
25.1197 3628.93 0 750\\
25.1197 3628.93 1 751\\
30.4803 3628.93 1 752\\
30.4803 3628.93 0 753\\
nan nan 0 754\\
30.4911 3628.93 0 755\\
30.4911 3628.93 0 756\\
35.8518 3628.93 0 757\\
35.8518 3628.93 0 758\\
nan nan 0 759\\
35.8625 3628.93 0 760\\
35.8625 3628.93 0 761\\
41.2232 3628.93 0 762\\
41.2232 3628.93 0 763\\
nan nan 0 764\\
41.2339 3628.93 0 765\\
41.2339 3628.93 0 766\\
46.5946 3628.93 0 767\\
46.5946 3628.93 0 768\\
nan nan 0 769\\
9.00537 4131.78 0 770\\
9.00537 4131.78 14 771\\
14.3661 4131.78 14 772\\
14.3661 4131.78 0 773\\
nan nan 0 774\\
14.3768 4131.78 0 775\\
14.3768 4131.78 27 776\\
19.7375 4131.78 27 777\\
19.7375 4131.78 0 778\\
nan nan 0 779\\
19.7482 4131.78 0 780\\
19.7482 4131.78 2 781\\
25.1089 4131.78 2 782\\
25.1089 4131.78 0 783\\
nan nan 0 784\\
25.1197 4131.78 0 785\\
25.1197 4131.78 1 786\\
30.4803 4131.78 1 787\\
30.4803 4131.78 0 788\\
nan nan 0 789\\
30.4911 4131.78 0 790\\
30.4911 4131.78 0 791\\
35.8518 4131.78 0 792\\
35.8518 4131.78 0 793\\
nan nan 0 794\\
35.8625 4131.78 0 795\\
35.8625 4131.78 0 796\\
41.2232 4131.78 0 797\\
41.2232 4131.78 0 798\\
nan nan 0 799\\
41.2339 4131.78 0 800\\
41.2339 4131.78 0 801\\
46.5946 4131.78 0 802\\
46.5946 4131.78 0 803\\
nan nan 0 804\\
9.00537 4131.78 0 805\\
9.00537 4131.78 0 806\\
14.3661 4131.78 0 807\\
14.3661 4131.78 0 808\\
nan nan 0 809\\
14.3768 4131.78 0 810\\
14.3768 4131.78 0 811\\
19.7375 4131.78 0 812\\
19.7375 4131.78 0 813\\
nan nan 0 814\\
19.7482 4131.78 0 815\\
19.7482 4131.78 0 816\\
25.1089 4131.78 0 817\\
25.1089 4131.78 0 818\\
nan nan 0 819\\
25.1197 4131.78 0 820\\
25.1197 4131.78 0 821\\
30.4803 4131.78 0 822\\
30.4803 4131.78 0 823\\
nan nan 0 824\\
30.4911 4131.78 0 825\\
30.4911 4131.78 0 826\\
35.8518 4131.78 0 827\\
35.8518 4131.78 0 828\\
nan nan 0 829\\
35.8625 4131.78 0 830\\
35.8625 4131.78 0 831\\
41.2232 4131.78 0 832\\
41.2232 4131.78 0 833\\
nan nan 0 834\\
41.2339 4131.78 0 835\\
41.2339 4131.78 0 836\\
46.5946 4131.78 0 837\\
46.5946 4131.78 0 838\\
nan nan 0 839\\
nan nan 0 840\\
nan nan 0 841\\
nan nan 0 842\\
nan nan 0 843\\
nan nan 0 844\\
nan nan 0 845\\
nan nan 0 846\\
nan nan 0 847\\
nan nan 0 848\\
nan nan 0 849\\
nan nan 0 850\\
nan nan 0 851\\
nan nan 0 852\\
nan nan 0 853\\
nan nan 0 854\\
nan nan 0 855\\
nan nan 0 856\\
nan nan 0 857\\
nan nan 0 858\\
nan nan 0 859\\
nan nan 0 860\\
nan nan 0 861\\
nan nan 0 862\\
nan nan 0 863\\
nan nan 0 864\\
nan nan 0 865\\
nan nan 0 866\\
nan nan 0 867\\
nan nan 0 868\\
nan nan 0 869\\
nan nan 0 870\\
nan nan 0 871\\
nan nan 0 872\\
nan nan 0 873\\
nan nan 0 874\\
9.00537 4132.79 0 875\\
9.00537 4132.79 0 876\\
14.3661 4132.79 0 877\\
14.3661 4132.79 0 878\\
nan nan 0 879\\
14.3768 4132.79 0 880\\
14.3768 4132.79 0 881\\
19.7375 4132.79 0 882\\
19.7375 4132.79 0 883\\
nan nan 0 884\\
19.7482 4132.79 0 885\\
19.7482 4132.79 0 886\\
25.1089 4132.79 0 887\\
25.1089 4132.79 0 888\\
nan nan 0 889\\
25.1197 4132.79 0 890\\
25.1197 4132.79 0 891\\
30.4803 4132.79 0 892\\
30.4803 4132.79 0 893\\
nan nan 0 894\\
30.4911 4132.79 0 895\\
30.4911 4132.79 0 896\\
35.8518 4132.79 0 897\\
35.8518 4132.79 0 898\\
nan nan 0 899\\
35.8625 4132.79 0 900\\
35.8625 4132.79 0 901\\
41.2232 4132.79 0 902\\
41.2232 4132.79 0 903\\
nan nan 0 904\\
41.2339 4132.79 0 905\\
41.2339 4132.79 0 906\\
46.5946 4132.79 0 907\\
46.5946 4132.79 0 908\\
nan nan 0 909\\
9.00537 4132.79 0 910\\
9.00537 4132.79 22 911\\
14.3661 4132.79 22 912\\
14.3661 4132.79 0 913\\
nan nan 0 914\\
14.3768 4132.79 0 915\\
14.3768 4132.79 17 916\\
19.7375 4132.79 17 917\\
19.7375 4132.79 0 918\\
nan nan 0 919\\
19.7482 4132.79 0 920\\
19.7482 4132.79 0 921\\
25.1089 4132.79 0 922\\
25.1089 4132.79 0 923\\
nan nan 0 924\\
25.1197 4132.79 0 925\\
25.1197 4132.79 0 926\\
30.4803 4132.79 0 927\\
30.4803 4132.79 0 928\\
nan nan 0 929\\
30.4911 4132.79 0 930\\
30.4911 4132.79 0 931\\
35.8518 4132.79 0 932\\
35.8518 4132.79 0 933\\
nan nan 0 934\\
35.8625 4132.79 0 935\\
35.8625 4132.79 0 936\\
41.2232 4132.79 0 937\\
41.2232 4132.79 0 938\\
nan nan 0 939\\
41.2339 4132.79 0 940\\
41.2339 4132.79 0 941\\
46.5946 4132.79 0 942\\
46.5946 4132.79 0 943\\
nan nan 0 944\\
9.00537 4635.64 0 945\\
9.00537 4635.64 22 946\\
14.3661 4635.64 22 947\\
14.3661 4635.64 0 948\\
nan nan 0 949\\
14.3768 4635.64 0 950\\
14.3768 4635.64 17 951\\
19.7375 4635.64 17 952\\
19.7375 4635.64 0 953\\
nan nan 0 954\\
19.7482 4635.64 0 955\\
19.7482 4635.64 0 956\\
25.1089 4635.64 0 957\\
25.1089 4635.64 0 958\\
nan nan 0 959\\
25.1197 4635.64 0 960\\
25.1197 4635.64 0 961\\
30.4803 4635.64 0 962\\
30.4803 4635.64 0 963\\
nan nan 0 964\\
30.4911 4635.64 0 965\\
30.4911 4635.64 0 966\\
35.8518 4635.64 0 967\\
35.8518 4635.64 0 968\\
nan nan 0 969\\
35.8625 4635.64 0 970\\
35.8625 4635.64 0 971\\
41.2232 4635.64 0 972\\
41.2232 4635.64 0 973\\
nan nan 0 974\\
41.2339 4635.64 0 975\\
41.2339 4635.64 0 976\\
46.5946 4635.64 0 977\\
46.5946 4635.64 0 978\\
nan nan 0 979\\
9.00537 4635.64 0 980\\
9.00537 4635.64 0 981\\
14.3661 4635.64 0 982\\
14.3661 4635.64 0 983\\
nan nan 0 984\\
14.3768 4635.64 0 985\\
14.3768 4635.64 0 986\\
19.7375 4635.64 0 987\\
19.7375 4635.64 0 988\\
nan nan 0 989\\
19.7482 4635.64 0 990\\
19.7482 4635.64 0 991\\
25.1089 4635.64 0 992\\
25.1089 4635.64 0 993\\
nan nan 0 994\\
25.1197 4635.64 0 995\\
25.1197 4635.64 0 996\\
30.4803 4635.64 0 997\\
30.4803 4635.64 0 998\\
nan nan 0 999\\
30.4911 4635.64 0 1000\\
30.4911 4635.64 0 1001\\
35.8518 4635.64 0 1002\\
35.8518 4635.64 0 1003\\
nan nan 0 1004\\
35.8625 4635.64 0 1005\\
35.8625 4635.64 0 1006\\
41.2232 4635.64 0 1007\\
41.2232 4635.64 0 1008\\
nan nan 0 1009\\
41.2339 4635.64 0 1010\\
41.2339 4635.64 0 1011\\
46.5946 4635.64 0 1012\\
46.5946 4635.64 0 1013\\
nan nan 0 1014\\
nan nan 0 1015\\
nan nan 0 1016\\
nan nan 0 1017\\
nan nan 0 1018\\
nan nan 0 1019\\
nan nan 0 1020\\
nan nan 0 1021\\
nan nan 0 1022\\
nan nan 0 1023\\
nan nan 0 1024\\
nan nan 0 1025\\
nan nan 0 1026\\
nan nan 0 1027\\
nan nan 0 1028\\
nan nan 0 1029\\
nan nan 0 1030\\
nan nan 0 1031\\
nan nan 0 1032\\
nan nan 0 1033\\
nan nan 0 1034\\
nan nan 0 1035\\
nan nan 0 1036\\
nan nan 0 1037\\
nan nan 0 1038\\
nan nan 0 1039\\
nan nan 0 1040\\
nan nan 0 1041\\
nan nan 0 1042\\
nan nan 0 1043\\
nan nan 0 1044\\
nan nan 0 1045\\
nan nan 0 1046\\
nan nan 0 1047\\
nan nan 0 1048\\
nan nan 0 1049\\
9.00537 4636.65 0 1050\\
9.00537 4636.65 0 1051\\
14.3661 4636.65 0 1052\\
14.3661 4636.65 0 1053\\
nan nan 0 1054\\
14.3768 4636.65 0 1055\\
14.3768 4636.65 0 1056\\
19.7375 4636.65 0 1057\\
19.7375 4636.65 0 1058\\
nan nan 0 1059\\
19.7482 4636.65 0 1060\\
19.7482 4636.65 0 1061\\
25.1089 4636.65 0 1062\\
25.1089 4636.65 0 1063\\
nan nan 0 1064\\
25.1197 4636.65 0 1065\\
25.1197 4636.65 0 1066\\
30.4803 4636.65 0 1067\\
30.4803 4636.65 0 1068\\
nan nan 0 1069\\
30.4911 4636.65 0 1070\\
30.4911 4636.65 0 1071\\
35.8518 4636.65 0 1072\\
35.8518 4636.65 0 1073\\
nan nan 0 1074\\
35.8625 4636.65 0 1075\\
35.8625 4636.65 0 1076\\
41.2232 4636.65 0 1077\\
41.2232 4636.65 0 1078\\
nan nan 0 1079\\
41.2339 4636.65 0 1080\\
41.2339 4636.65 0 1081\\
46.5946 4636.65 0 1082\\
46.5946 4636.65 0 1083\\
nan nan 0 1084\\
9.00537 4636.65 0 1085\\
9.00537 4636.65 13 1086\\
14.3661 4636.65 13 1087\\
14.3661 4636.65 0 1088\\
nan nan 0 1089\\
14.3768 4636.65 0 1090\\
14.3768 4636.65 1 1091\\
19.7375 4636.65 1 1092\\
19.7375 4636.65 0 1093\\
nan nan 0 1094\\
19.7482 4636.65 0 1095\\
19.7482 4636.65 0 1096\\
25.1089 4636.65 0 1097\\
25.1089 4636.65 0 1098\\
nan nan 0 1099\\
25.1197 4636.65 0 1100\\
25.1197 4636.65 0 1101\\
30.4803 4636.65 0 1102\\
30.4803 4636.65 0 1103\\
nan nan 0 1104\\
30.4911 4636.65 0 1105\\
30.4911 4636.65 0 1106\\
35.8518 4636.65 0 1107\\
35.8518 4636.65 0 1108\\
nan nan 0 1109\\
35.8625 4636.65 0 1110\\
35.8625 4636.65 0 1111\\
41.2232 4636.65 0 1112\\
41.2232 4636.65 0 1113\\
nan nan 0 1114\\
41.2339 4636.65 0 1115\\
41.2339 4636.65 0 1116\\
46.5946 4636.65 0 1117\\
46.5946 4636.65 0 1118\\
nan nan 0 1119\\
9.00537 5139.5 0 1120\\
9.00537 5139.5 13 1121\\
14.3661 5139.5 13 1122\\
14.3661 5139.5 0 1123\\
nan nan 0 1124\\
14.3768 5139.5 0 1125\\
14.3768 5139.5 1 1126\\
19.7375 5139.5 1 1127\\
19.7375 5139.5 0 1128\\
nan nan 0 1129\\
19.7482 5139.5 0 1130\\
19.7482 5139.5 0 1131\\
25.1089 5139.5 0 1132\\
25.1089 5139.5 0 1133\\
nan nan 0 1134\\
25.1197 5139.5 0 1135\\
25.1197 5139.5 0 1136\\
30.4803 5139.5 0 1137\\
30.4803 5139.5 0 1138\\
nan nan 0 1139\\
30.4911 5139.5 0 1140\\
30.4911 5139.5 0 1141\\
35.8518 5139.5 0 1142\\
35.8518 5139.5 0 1143\\
nan nan 0 1144\\
35.8625 5139.5 0 1145\\
35.8625 5139.5 0 1146\\
41.2232 5139.5 0 1147\\
41.2232 5139.5 0 1148\\
nan nan 0 1149\\
41.2339 5139.5 0 1150\\
41.2339 5139.5 0 1151\\
46.5946 5139.5 0 1152\\
46.5946 5139.5 0 1153\\
nan nan 0 1154\\
9.00537 5139.5 0 1155\\
9.00537 5139.5 0 1156\\
14.3661 5139.5 0 1157\\
14.3661 5139.5 0 1158\\
nan nan 0 1159\\
14.3768 5139.5 0 1160\\
14.3768 5139.5 0 1161\\
19.7375 5139.5 0 1162\\
19.7375 5139.5 0 1163\\
nan nan 0 1164\\
19.7482 5139.5 0 1165\\
19.7482 5139.5 0 1166\\
25.1089 5139.5 0 1167\\
25.1089 5139.5 0 1168\\
nan nan 0 1169\\
25.1197 5139.5 0 1170\\
25.1197 5139.5 0 1171\\
30.4803 5139.5 0 1172\\
30.4803 5139.5 0 1173\\
nan nan 0 1174\\
30.4911 5139.5 0 1175\\
30.4911 5139.5 0 1176\\
35.8518 5139.5 0 1177\\
35.8518 5139.5 0 1178\\
nan nan 0 1179\\
35.8625 5139.5 0 1180\\
35.8625 5139.5 0 1181\\
41.2232 5139.5 0 1182\\
41.2232 5139.5 0 1183\\
nan nan 0 1184\\
41.2339 5139.5 0 1185\\
41.2339 5139.5 0 1186\\
46.5946 5139.5 0 1187\\
46.5946 5139.5 0 1188\\
nan nan 0 1189\\
nan nan 0 1190\\
nan nan 0 1191\\
nan nan 0 1192\\
nan nan 0 1193\\
nan nan 0 1194\\
nan nan 0 1195\\
nan nan 0 1196\\
nan nan 0 1197\\
nan nan 0 1198\\
nan nan 0 1199\\
nan nan 0 1200\\
nan nan 0 1201\\
nan nan 0 1202\\
nan nan 0 1203\\
nan nan 0 1204\\
nan nan 0 1205\\
nan nan 0 1206\\
nan nan 0 1207\\
nan nan 0 1208\\
nan nan 0 1209\\
nan nan 0 1210\\
nan nan 0 1211\\
nan nan 0 1212\\
nan nan 0 1213\\
nan nan 0 1214\\
nan nan 0 1215\\
nan nan 0 1216\\
nan nan 0 1217\\
nan nan 0 1218\\
nan nan 0 1219\\
nan nan 0 1220\\
nan nan 0 1221\\
nan nan 0 1222\\
nan nan 0 1223\\
nan nan 0 1224\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
unbounded coords=jump,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0.5,
xmax= 3.5,
xtick={ 1, 2, 3},
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-4.10223,
ymax=6.9469,
axis background/.style={fill=white}
]
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
1 0.8575\\
1 1\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
2 3.6\\
2 4\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
3 0.52975\\
3 0.901\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
1 0.43\\
1 0.679375\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
2 -3.6\\
2 -2.6\\
};
\addplot [color=black,dashed,forget plot]
table[row sep=crcr]{%
3 0.0595\\
3 0.269875\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
0.8875 1\\
1.1125 1\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
1.8875 4\\
2.1125 4\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
2.8875 0.901\\
3.1125 0.901\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
0.8875 0.43\\
1.1125 0.43\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
1.8875 -3.6\\
2.1125 -3.6\\
};
\addplot [color=black,solid,forget plot]
table[row sep=crcr]{%
2.8875 0.0595\\
3.1125 0.0595\\
};
\addplot [color=blue,solid,forget plot]
table[row sep=crcr]{%
0.775 0.679375\\
0.775 0.8575\\
1.225 0.8575\\
1.225 0.679375\\
0.775 0.679375\\
};
\addplot [color=blue,solid,forget plot]
table[row sep=crcr]{%
1.775 -2.6\\
1.775 3.6\\
2.225 3.6\\
2.225 -2.6\\
1.775 -2.6\\
};
\addplot [color=blue,solid,forget plot]
table[row sep=crcr]{%
2.775 0.269875\\
2.775 0.52975\\
3.225 0.52975\\
3.225 0.269875\\
2.775 0.269875\\
};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
0.775 0.7625\\
1.225 0.7625\\
};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
1.775 3.2\\
2.225 3.2\\
};
\addplot [color=red,solid,forget plot]
table[row sep=crcr]{%
2.775 0.4555\\
3.225 0.4555\\
};
\addplot [color=black,only marks,mark=+,mark options={solid,draw=red},forget plot]
table[row sep=crcr]{%
1 0.1925\\
};
\addplot [color=black,only marks,mark=+,mark options={solid,draw=red},forget plot]
table[row sep=crcr]{%
nan nan\\
};
\addplot [color=black,only marks,mark=+,mark options={solid,draw=red},forget plot]
table[row sep=crcr]{%
nan nan\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.20810,0.16630,0.52920}%
\definecolor{mycolor2}{rgb}{0.21783,0.72504,0.61926}%
\definecolor{mycolor3}{rgb}{0.97630,0.98310,0.05380}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
area style,
stack plots=y,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 3,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 40,
axis background/.style={fill=white},
legend style={legend cell align=left,align=left,draw=black}
]
\addplot[fill=mycolor1,draw=black] plot table[row sep=crcr]{%
1 24\\
2 5\\
3 6\\
}
\closedcycle;
\addlegendentry{foo};
\addplot[fill=mycolor2,draw=black,forget plot] plot table[row sep=crcr]{%
1 1\\
2 7\\
3 13\\
}
\closedcycle;
\addplot[fill=mycolor3,draw=black] plot table[row sep=crcr]{%
1 8\\
2 14\\
3 20\\
}
\closedcycle;
\addlegendentry{foobar};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -4,
xmax= 4,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -3,
ymax= 3,
axis background/.style={fill=white},
legend style={at={(0.5,0.6)},anchor=south west,legend cell align=left,align=left,draw=red,fill=green}
]
\addplot [color=red,dashed,mark=square,mark options={solid}]
table[row sep=crcr]{%
-3.14159 -2.44929e-16\\
-2.82743 -0.638477\\
-2.51327 -1.33064\\
-2.19911 -2.02955\\
-1.88496 -1.46538\\
-1.5708 -2.5161\\
-1.25664 -1.33764\\
-0.942478 -0.0672286\\
-0.628319 -0.00206353\\
-0.314159 -1.12895e-05\\
0 0\\
0.314159 1.12895e-05\\
0.628319 0.00206353\\
0.942478 0.0672286\\
1.25664 1.33764\\
1.5708 2.5161\\
1.88496 1.46538\\
2.19911 2.02955\\
2.51327 1.33064\\
2.82743 0.638477\\
3.14159 2.44929e-16\\
};
\addlegendentry{y};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,0.44700,0.74100}%
\definecolor{mycolor2}{rgb}{0.85000,0.32500,0.09800}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 0,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 0,
ymax= 1,
axis background/.style={fill=white},
legend style={at={(0.06,0.446)},anchor=south west,legend cell align=left,align=left,draw=black}
]
\addplot [color=mycolor1,solid]
table[row sep=crcr]{%
0 0\\
1 1\\
};
\addlegendentry{1};
\addplot [color=mycolor2,solid]
table[row sep=crcr]{%
0 0\\
0.030303 0.000918274\\
0.0606061 0.00367309\\
0.0909091 0.00826446\\
0.121212 0.0146924\\
0.151515 0.0229568\\
0.181818 0.0330579\\
0.212121 0.0449954\\
0.242424 0.0587695\\
0.272727 0.0743802\\
0.30303 0.0918274\\
0.333333 0.111111\\
0.363636 0.132231\\
0.40404 0.163249\\
0.444444 0.197531\\
0.484848 0.235078\\
0.525253 0.27589\\
0.565657 0.319967\\
0.606061 0.367309\\
0.646465 0.417917\\
0.686869 0.471789\\
0.727273 0.528926\\
0.767677 0.589328\\
0.808081 0.652995\\
0.848485 0.719927\\
0.888889 0.790123\\
0.939394 0.882461\\
0.989899 0.9799\\
1 1\\
};
\addlegendentry{2};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.951\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
colormap={mymap}{[1pt] rgb(0pt)=(0,0,1); rgb(63pt)=(0,1,0.5)},
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 1,
xmax= 20,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= 1,
ymax= 20,
ytick={\empty},
axis background/.style={fill=white}
]
\addplot[contour prepared, contour prepared format=matlab] table[row sep=crcr] {%
%
-5.09536 11\\
12.3945 5\\
12 4.58999\\
11 4.28975\\
10 4.87043\\
9.91922 5\\
10 5.15896\\
10.5546 6\\
11 6.23755\\
12 6.20556\\
12.2778 6\\
12.3945 5\\
-3.83022 15\\
12.2069 4\\
12 3.87162\\
11 3.66474\\
10 3.93067\\
9.90354 4\\
9.31334 5\\
9.84285 6\\
10 6.11051\\
11 6.65689\\
12 6.7392\\
12.9991 6\\
13 5.99181\\
13.1001 5\\
13 4.83813\\
12.2069 4\\
-2.56507 19\\
13.2117 4\\
13 3.80203\\
12 3.24193\\
11 3.09848\\
10 3.26581\\
9 3.97585\\
8.97868 4\\
8.68115 5\\
9 5.45445\\
9.30927 6\\
10 6.48572\\
10.8829 7\\
11 7.07704\\
12 7.25244\\
12.5392 7\\
13 6.69562\\
13.6284 6\\
13.763 5\\
13.2117 4\\
-2.56507 7\\
6.95067 11\\
6 10.1746\\
5.42477 11\\
5.85301 12\\
6 12.1091\\
6.42816 12\\
6.95067 11\\
-1.29993 23\\
13.2234 3\\
13 2.83678\\
12 2.39648\\
11 2.28259\\
10 2.40663\\
9 2.90427\\
8.88281 3\\
8.05718 4\\
8.02077 5\\
8.69458 6\\
9 6.17764\\
10 6.86093\\
10.2388 7\\
11 7.50089\\
12 7.74619\\
13 7.33095\\
13.454 7\\
14 6.37683\\
14.3949 6\\
14.6279 5\\
14.2647 4\\
14 3.68233\\
13.2234 3\\
-1.29993 15\\
7.16059 10\\
7 9.79183\\
6 9.06307\\
5 9.0756\\
4.23242 10\\
4.10659 11\\
4.31231 12\\
5 12.945\\
5.08931 13\\
6 13.2999\\
7 13.0101\\
7.01354 13\\
7.78717 12\\
7.67812 11\\
7.16059 10\\
-0.0347867 30\\
7.35699 1\\
7 1.29058\\
6.42104 2\\
6.08891 3\\
6.09991 4\\
6.55098 5\\
7 5.20808\\
7.91035 6\\
8 6.02843\\
9 6.60022\\
9.60052 7\\
10 7.26219\\
11 7.92474\\
11.2676 8\\
12 8.58886\\
12.7787 8\\
13 7.91882\\
14 7.23347\\
14.4648 7\\
15 6.50061\\
15.9167 6\\
16 5.8081\\
16.9549 5\\
17 4.55679\\
17.2714 4\\
17 3.37445\\
16.9239 3\\
16.2888 2\\
16 1.69828\\
15.1313 1\\
-0.0347867 32\\
1 11.2338\\
1.04897 12\\
1.23135 13\\
1.74637 14\\
2 14.2959\\
2.77097 15\\
3 15.1329\\
4 15.2397\\
4.27303 15\\
5 14.8707\\
6 14.4038\\
6.46944 14\\
7 13.7462\\
8 13.0027\\
8.00412 13\\
8.65595 12\\
8.38897 11\\
8 10.4303\\
7.75875 10\\
7 9.01646\\
6.97786 9\\
6 8.04785\\
5.8648 8\\
5 7.242\\
4.1398 7\\
4 6.82142\\
3 6.76139\\
2.51857 7\\
2 7.38238\\
1.46033 8\\
1.10698 9\\
1 9.99624\\
1.23036 17\\
6.83102 7\\
7 6.83901\\
8 6.67534\\
8.90297 7\\
9 7.02942\\
10 7.6788\\
10.4839 8\\
10.9275 9\\
10.5896 10\\
10 10.8892\\
9 10.8298\\
8.43163 10\\
8 9.53988\\
7.58298 9\\
7 8.05561\\
6.94296 8\\
6.83102 7\\
1.23036 43\\
13.9342 8\\
14 7.95616\\
15 7.6341\\
16 7.93217\\
16.0824 8\\
16.768 9\\
16.9852 10\\
16.9753 11\\
16.739 12\\
16.2001 13\\
16 13.3255\\
15.5995 14\\
15.315 15\\
15 15.8754\\
14.9719 16\\
14.468 17\\
14 17.4967\\
13.3672 18\\
13 18.2625\\
12 18.7023\\
11 18.8662\\
10 18.8666\\
9 18.7018\\
8 18.2501\\
7.66043 18\\
7 17.4101\\
6.65105 17\\
6.30498 16\\
6.55277 15\\
7 14.5957\\
7.50406 14\\
8 13.6091\\
8.92013 13\\
9 12.8733\\
10 12.4652\\
11 12.8039\\
12 12.8729\\
12.7613 12\\
12.6572 11\\
12.6125 10\\
12.8545 9\\
13 8.88456\\
13.9342 8\\
2.4955 11\\
7.74005 8\\
8 7.60078\\
9 7.57495\\
9.77283 8\\
10 8.4346\\
10.2129 9\\
10 9.44877\\
9 9.79047\\
8.27056 9\\
8 8.52468\\
7.74005 8\\
2.4955 13\\
13.9094 9\\
14 8.91395\\
15 8.74641\\
15.3406 9\\
15.8806 10\\
15.8628 11\\
15.3314 12\\
15 12.391\\
14 12.4887\\
13.8157 12\\
13.4974 11\\
13.4916 10\\
13.9094 9\\
2.4955 25\\
8.24991 14\\
9 13.4612\\
10 13.2252\\
11 13.3155\\
12 13.4434\\
13 13.5082\\
13.8852 14\\
14 14.2792\\
14.1729 15\\
14 15.8053\\
13.9713 16\\
13.3299 17\\
13 17.2915\\
12 17.8524\\
11.3458 18\\
11 18.1005\\
10 18.1014\\
9.65293 18\\
9 17.8515\\
8 17.2598\\
7.72462 17\\
7.20115 16\\
7.34008 15\\
8 14.248\\
8.24991 14\\
3.76064 21\\
8.95321 14\\
9 13.9664\\
10 13.6469\\
11 13.7153\\
12 13.9418\\
12.1903 14\\
13 14.5118\\
13.3632 15\\
13.2656 16\\
13 16.3609\\
12.3941 17\\
12 17.2578\\
11 17.576\\
10 17.5776\\
9 17.2557\\
8.62381 17\\
8 16.2427\\
7.85162 16\\
7.95245 15\\
8 14.9458\\
8.95321 14\\
5.02579 15\\
8.5172 15\\
9 14.5202\\
10 14.0761\\
11 14.1301\\
12 14.4973\\
12.6293 15\\
12.5954 16\\
12 16.6183\\
11.2416 17\\
11 17.0881\\
10 17.0906\\
9.75426 17\\
9 16.613\\
8.46051 16\\
8.5172 15\\
6.29093 9\\
9.12448 15\\
10 14.5433\\
11 14.582\\
11.896 15\\
11.9226 16\\
11 16.5449\\
10 16.5513\\
9.08738 16\\
9.12448 15\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.75\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
point meta min= 1,
point meta max= 64,
axis on top,
separate axis lines,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= 50,
xmax= 200,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
y dir=reverse,
ymin= 50,
ymax= 200,
axis background/.style={fill=white},
colormap/jet,
colorbar horizontal,
colorbar style={at={(0.5,0.97)},anchor=north,xticklabel pos=lower,width=0.97*\pgfkeysvalueof{/pgfplots/parent axis width}}
]
\addplot [forget plot] graphics [xmin= 0.5,xmax=300.5,ymin= 0.5,ymax=400.5] {test80-converted-1.png};
\end{axis}
\end{tikzpicture}%
\end{document}
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\begin{tikzpicture}
\begin{axis}[%
width=0.75\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin= -1,
xmax= 1,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin= -1,
ymax= 1,
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left
]
\addplot[%
surf,
shader=flat corner,draw=black,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=13]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y c\\
0 0 0\\
-0.166667 -2.04108e-17 0.166667\\
-0.333333 -4.08216e-17 0.333333\\
-0.5 -6.12323e-17 0.5\\
-0.666667 -8.16431e-17 0.666667\\
-0.833333 -1.02054e-16 0.833333\\
-1 -1.22465e-16 1\\
0 0 0\\
-0.144338 -0.0833333 0.0833333\\
-0.288675 -0.166667 0.166667\\
-0.433013 -0.25 0.25\\
-0.57735 -0.333333 0.333333\\
-0.721688 -0.416667 0.416667\\
-0.866025 -0.5 0.5\\
0 0 0\\
-0.0833333 -0.144338 -0.0833333\\
-0.166667 -0.288675 -0.166667\\
-0.25 -0.433013 -0.25\\
-0.333333 -0.57735 -0.333333\\
-0.416667 -0.721688 -0.416667\\
-0.5 -0.866025 -0.5\\
0 0 0\\
1.02054e-17 -0.166667 -0.166667\\
2.04108e-17 -0.333333 -0.333333\\
3.06162e-17 -0.5 -0.5\\
4.08216e-17 -0.666667 -0.666667\\
5.10269e-17 -0.833333 -0.833333\\
6.12323e-17 -1 -1\\
0 0 0\\
0.0833333 -0.144338 -0.0833333\\
0.166667 -0.288675 -0.166667\\
0.25 -0.433013 -0.25\\
0.333333 -0.57735 -0.333333\\
0.416667 -0.721688 -0.416667\\
0.5 -0.866025 -0.5\\
0 0 0\\
0.144338 -0.0833333 0.0833333\\
0.288675 -0.166667 0.166667\\
0.433013 -0.25 0.25\\
0.57735 -0.333333 0.333333\\
0.721688 -0.416667 0.416667\\
0.866025 -0.5 0.5\\
0 0 0\\
0.166667 0 0.166667\\
0.333333 0 0.333333\\
0.5 0 0.5\\
0.666667 0 0.666667\\
0.833333 0 0.833333\\
1 0 1\\
0 0 0\\
0.144338 0.0833333 0.0833333\\
0.288675 0.166667 0.166667\\
0.433013 0.25 0.25\\
0.57735 0.333333 0.333333\\
0.721688 0.416667 0.416667\\
0.866025 0.5 0.5\\
0 0 0\\
0.0833333 0.144338 -0.0833333\\
0.166667 0.288675 -0.166667\\
0.25 0.433013 -0.25\\
0.333333 0.57735 -0.333333\\
0.416667 0.721688 -0.416667\\
0.5 0.866025 -0.5\\
0 0 0\\
1.02054e-17 0.166667 -0.166667\\
2.04108e-17 0.333333 -0.333333\\
3.06162e-17 0.5 -0.5\\
4.08216e-17 0.666667 -0.666667\\
5.10269e-17 0.833333 -0.833333\\
6.12323e-17 1 -1\\
0 0 0\\
-0.0833333 0.144338 -0.0833333\\
-0.166667 0.288675 -0.166667\\
-0.25 0.433013 -0.25\\
-0.333333 0.57735 -0.333333\\
-0.416667 0.721688 -0.416667\\
-0.5 0.866025 -0.5\\
0 0 0\\
-0.144338 0.0833333 0.0833333\\
-0.288675 0.166667 0.166667\\
-0.433013 0.25 0.25\\
-0.57735 0.333333 0.333333\\
-0.721688 0.416667 0.416667\\
-0.866025 0.5 0.5\\
0 0 0\\
-0.166667 2.04108e-17 0.166667\\
-0.333333 4.08216e-17 0.333333\\
-0.5 6.12323e-17 0.5\\
-0.666667 8.16431e-17 0.666667\\
-0.833333 1.02054e-16 0.833333\\
-1 1.22465e-16 1\\
};
\end{axis}
\end{tikzpicture}%
\end{document}
This file has been truncated, but you can view the full file.
% This file was created by matlab2tikz.
%
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\usepackage{grffile}
\pgfplotsset{compat=newest}
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{amsmath}
\newlength\figureHeight \setlength{\figureHeight}{6cm}
\newlength\figureWidth \setlength{\figureWidth}{10cm}
\begin{document}
\definecolor{mycolor1}{rgb}{0.00000,1.00000,1.00000}%
\definecolor{mycolor2}{rgb}{1.00000,0.00000,1.00000}%
\definecolor{mycolor3}{rgb}{1.00000,1.00000,0.00000}%
%
\begin{tikzpicture}
\begin{axis}[%
width=0.879\figureWidth,
height=\figureHeight,
at={(0\figureWidth,0\figureHeight)},
scale only axis,
plot box ratio=1.75 1.75 1,
every outer x axis line/.append style={black},
every x tick label/.append style={font=\color{black}},
xmin=-2.5,
xmax= 1,
tick align=outside,
xmajorgrids,
every outer y axis line/.append style={black},
every y tick label/.append style={font=\color{black}},
ymin=-2.5,
ymax= 1,
ymajorgrids,
every outer z axis line/.append style={black},
every z tick label/.append style={font=\color{black}},
zmin= -1,
zmax= 1,
zmajorgrids,
view={-37.5}{ 30},
axis background/.style={fill=white},
axis x line*=bottom,
axis y line*=left,
axis z line*=left
]
\addplot3[%
surf,
fill=red,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0.2 0 0 0\\
0 0 1 1\\
0.190211 0.0618034 0 0\\
0 0 1 1\\
0.161803 0.117557 0 0\\
0 0 1 1\\
0.117557 0.161803 0 0\\
0 0 1 1\\
0.0618034 0.190211 0 0\\
0 0 1 1\\
1.22465e-17 0.2 0 0\\
0 0 1 1\\
-0.0618034 0.190211 0 0\\
0 0 1 1\\
-0.117557 0.161803 0 0\\
0 0 1 1\\
-0.161803 0.117557 0 0\\
0 0 1 1\\
-0.190211 0.0618034 0 0\\
0 0 1 1\\
-0.2 2.44929e-17 0 0\\
0 0 1 1\\
-0.190211 -0.0618034 0 0\\
0 0 1 1\\
-0.161803 -0.117557 0 0\\
0 0 1 1\\
-0.117557 -0.161803 0 0\\
0 0 1 1\\
-0.0618034 -0.190211 0 0\\
0 0 1 1\\
-3.67394e-17 -0.2 0 0\\
0 0 1 1\\
0.0618034 -0.190211 0 0\\
0 0 1 1\\
0.117557 -0.161803 0 0\\
0 0 1 1\\
0.161803 -0.117557 0 0\\
0 0 1 1\\
0.190211 -0.0618034 0 0\\
0 0 1 1\\
0.2 0 0 0\\
0 0 1 1\\
};
\addplot3[%
surf,
fill=green,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0.2 0 0 -0\\
0 0 -1 -1\\
0.190211 0.0618034 0 -0\\
0 0 -1 -1\\
0.161803 0.117557 0 -0\\
0 0 -1 -1\\
0.117557 0.161803 0 -0\\
0 0 -1 -1\\
0.0618034 0.190211 0 -0\\
0 0 -1 -1\\
1.22465e-17 0.2 0 -0\\
0 0 -1 -1\\
-0.0618034 0.190211 0 -0\\
0 0 -1 -1\\
-0.117557 0.161803 0 -0\\
0 0 -1 -1\\
-0.161803 0.117557 0 -0\\
0 0 -1 -1\\
-0.190211 0.0618034 0 -0\\
0 0 -1 -1\\
-0.2 2.44929e-17 0 -0\\
0 0 -1 -1\\
-0.190211 -0.0618034 0 -0\\
0 0 -1 -1\\
-0.161803 -0.117557 0 -0\\
0 0 -1 -1\\
-0.117557 -0.161803 0 -0\\
0 0 -1 -1\\
-0.0618034 -0.190211 0 -0\\
0 0 -1 -1\\
-3.67394e-17 -0.2 0 -0\\
0 0 -1 -1\\
0.0618034 -0.190211 0 -0\\
0 0 -1 -1\\
0.117557 -0.161803 0 -0\\
0 0 -1 -1\\
0.161803 -0.117557 0 -0\\
0 0 -1 -1\\
0.190211 -0.0618034 0 -0\\
0 0 -1 -1\\
0.2 0 0 -0\\
0 0 -1 -1\\
};
\addplot3[%
surf,
fill=blue,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0 0.2 0 0\\
1 0 0 0\\
0 0.190211 0.0618034 0.0618034\\
1 0 0 0\\
0 0.161803 0.117557 0.117557\\
1 0 0 0\\
0 0.117557 0.161803 0.161803\\
1 0 0 0\\
0 0.0618034 0.190211 0.190211\\
1 0 0 0\\
0 1.22465e-17 0.2 0.2\\
1 0 0 0\\
0 -0.0618034 0.190211 0.190211\\
1 0 0 0\\
0 -0.117557 0.161803 0.161803\\
1 0 0 0\\
0 -0.161803 0.117557 0.117557\\
1 0 0 0\\
0 -0.190211 0.0618034 0.0618034\\
1 0 0 0\\
0 -0.2 2.44929e-17 2.44929e-17\\
1 0 0 0\\
0 -0.190211 -0.0618034 -0.0618034\\
1 0 0 0\\
0 -0.161803 -0.117557 -0.117557\\
1 0 0 0\\
0 -0.117557 -0.161803 -0.161803\\
1 0 0 0\\
0 -0.0618034 -0.190211 -0.190211\\
1 0 0 0\\
0 -3.67394e-17 -0.2 -0.2\\
1 0 0 0\\
0 0.0618034 -0.190211 -0.190211\\
1 0 0 0\\
0 0.117557 -0.161803 -0.161803\\
1 0 0 0\\
0 0.161803 -0.117557 -0.117557\\
1 0 0 0\\
0 0.190211 -0.0618034 -0.0618034\\
1 0 0 0\\
0 0.2 0 0\\
1 0 0 0\\
};
\addplot3[%
surf,
fill=mycolor1,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0 0.2 0 0\\
-1 0 0 0\\
0 0.190211 0.0618034 0.0618034\\
-1 0 0 0\\
0 0.161803 0.117557 0.117557\\
-1 0 0 0\\
0 0.117557 0.161803 0.161803\\
-1 0 0 0\\
0 0.0618034 0.190211 0.190211\\
-1 0 0 0\\
0 1.22465e-17 0.2 0.2\\
-1 0 0 0\\
0 -0.0618034 0.190211 0.190211\\
-1 0 0 0\\
0 -0.117557 0.161803 0.161803\\
-1 0 0 0\\
0 -0.161803 0.117557 0.117557\\
-1 0 0 0\\
0 -0.190211 0.0618034 0.0618034\\
-1 0 0 0\\
0 -0.2 2.44929e-17 2.44929e-17\\
-1 0 0 0\\
0 -0.190211 -0.0618034 -0.0618034\\
-1 0 0 0\\
0 -0.161803 -0.117557 -0.117557\\
-1 0 0 0\\
0 -0.117557 -0.161803 -0.161803\\
-1 0 0 0\\
0 -0.0618034 -0.190211 -0.190211\\
-1 0 0 0\\
0 -3.67394e-17 -0.2 -0.2\\
-1 0 0 0\\
0 0.0618034 -0.190211 -0.190211\\
-1 0 0 0\\
0 0.117557 -0.161803 -0.161803\\
-1 0 0 0\\
0 0.161803 -0.117557 -0.117557\\
-1 0 0 0\\
0 0.190211 -0.0618034 -0.0618034\\
-1 0 0 0\\
0 0.2 0 0\\
-1 0 0 0\\
};
\addplot3[%
surf,
fill=mycolor2,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0 0 0.2 0.2\\
0 1 0 0\\
0.0618034 0 0.190211 0.190211\\
0 1 0 0\\
0.117557 0 0.161803 0.161803\\
0 1 0 0\\
0.161803 0 0.117557 0.117557\\
0 1 0 0\\
0.190211 0 0.0618034 0.0618034\\
0 1 0 0\\
0.2 0 1.22465e-17 1.22465e-17\\
0 1 0 0\\
0.190211 0 -0.0618034 -0.0618034\\
0 1 0 0\\
0.161803 0 -0.117557 -0.117557\\
0 1 0 0\\
0.117557 0 -0.161803 -0.161803\\
0 1 0 0\\
0.0618034 0 -0.190211 -0.190211\\
0 1 0 0\\
2.44929e-17 0 -0.2 -0.2\\
0 1 0 0\\
-0.0618034 0 -0.190211 -0.190211\\
0 1 0 0\\
-0.117557 0 -0.161803 -0.161803\\
0 1 0 0\\
-0.161803 0 -0.117557 -0.117557\\
0 1 0 0\\
-0.190211 0 -0.0618034 -0.0618034\\
0 1 0 0\\
-0.2 0 -3.67394e-17 -3.67394e-17\\
0 1 0 0\\
-0.190211 0 0.0618034 0.0618034\\
0 1 0 0\\
-0.161803 0 0.117557 0.117557\\
0 1 0 0\\
-0.117557 0 0.161803 0.161803\\
0 1 0 0\\
-0.0618034 0 0.190211 0.190211\\
0 1 0 0\\
0 0 0.2 0.2\\
0 1 0 0\\
};
\addplot3[%
surf,
fill=mycolor3,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0.0755333); rgb(63pt)=(0.9763,0.9831,0.0538)},mesh/rows=21]
table[row sep=crcr, point meta=\thisrow{c}] {%
%
x y z c\\
0 0 0.2 0.2\\
0 -1 0 0\\
0.0618034 0 0.190211 0.190211\\
0 -1 0 0\\
0.117557 0 0.161803 0.161803\\
0 -1 0 0\\
0.161803 0 0.117557 0.117557\\
0 -1 0 0\\
0.190211 0 0.0618034 0.0618034\\
0 -1 0 0\\
0.2 0 1.22465e-17 1.22465e-17\\
0 -1 0 0\\
0.190211 0 -0.0618034 -0.0618034\\
0 -1 0 0\\
0.161803 0 -0.117557 -0.117557\\
0 -1 0 0\\
0.117557 0 -0.161803 -0.161803\\
0 -1 0 0\\
0.0618034 0 -0.190211 -0.190211\\
0 -1 0 0\\
2.44929e-17 0 -0.2 -0.2\\
0 -1 0 0\\
-0.0618034 0 -0.190211 -0.190211\\
0 -1 0 0\\
-0.117557 0 -0.161803 -0.161803\\
0 -1 0 0\\
-0.161803 0 -0.117557 -0.117557\\
0 -1 0 0\\
-0.190211 0 -0.0618034 -0.0618034\\
0 -1 0 0\\
-0.2 0 -3.67394e-17 -3.67394e-17\\
0 -1 0 0\\
-0.190211 0 0.0618034 0.0618034\\
0 -1 0 0\\
-0.161803 0 0.117557 0.117557\\
0 -1 0 0\\
-0.117557 0 0.161803 0.161803\\
0 -1 0 0\\
-0.0618034 0 0.190211 0.190211\\
0 -1 0 0\\
0 0 0.2 0.2\\
0 -1 0 0\\
};
\addplot3[%
surf,
fill=mycolor3,faceted color=black,z buffer=sort,colormap={mymap}{[1pt] rgb(0pt)=(0.2081,0.1663,0.5292); rgb(1pt)=(0.211624,0.189781,0.577676); rgb(2pt)=(0.212252,0.213771,0.626971); rgb(3pt)=(0.2081,0.2386,0.677086); rgb(4pt)=(0.195905,0.264457,0.7279); rgb(5pt)=(0.170729,0.291938,0.779248); rgb(6pt)=(0.125271,0.324243,0.830271); rgb(7pt)=(0.0591333,0.359833,0.868333); rgb(8pt)=(0.0116952,0.38751,0.881957); rgb(9pt)=(0.00595714,0.408614,0.882843); rgb(10pt)=(0.0165143,0.4266,0.878633); rgb(11pt)=(0.0328524,0.443043,0.871957); rgb(12pt)=(0.0498143,0.458571,0.864057); rgb(13pt)=(0.0629333,0.47369,0.855438); rgb(14pt)=(0.0722667,0.488667,0.8467); rgb(15pt)=(0.0779429,0.503986,0.838371); rgb(16pt)=(0.0793476,0.520024,0.831181); rgb(17pt)=(0.0749429,0.537543,0.826271); rgb(18pt)=(0.0640571,0.556986,0.823957); rgb(19pt)=(0.0487714,0.577224,0.822829); rgb(20pt)=(0.0343429,0.596581,0.819852); rgb(21pt)=(0.0265,0.6137,0.8135); rgb(22pt)=(0.0238905,0.628662,0.803762); rgb(23pt)=(0.0230905,0.641786,0.791267); rgb(24pt)=(0.0227714,0.653486,0.776757); rgb(25pt)=(0.0266619,0.664195,0.760719); rgb(26pt)=(0.0383714,0.674271,0.743552); rgb(27pt)=(0.0589714,0.683757,0.725386); rgb(28pt)=(0.0843,0.692833,0.706167); rgb(29pt)=(0.113295,0.7015,0.685857); rgb(30pt)=(0.145271,0.709757,0.664629); rgb(31pt)=(0.180133,0.717657,0.642433); rgb(32pt)=(0.217829,0.725043,0.619262); rgb(33pt)=(0.258643,0.731714,0.595429); rgb(34pt)=(0.302171,0.737605,0.571186); rgb(35pt)=(0.348167,0.742433,0.547267); rgb(36pt)=(0.395257,0.7459,0.524443); rgb(37pt)=(0.44201,0.748081,0.503314); rgb(38pt)=(0.487124,0.749062,0.483976); rgb(39pt)=(0.530029,0.749114,0.466114); rgb(40pt)=(0.570857,0.748519,0.44939); rgb(41pt)=(0.609852,0.747314,0.433686); rgb(42pt)=(0.6473,0.7456,0.4188); rgb(43pt)=(0.683419,0.743476,0.404433); rgb(44pt)=(0.71841,0.741133,0.390476); rgb(45pt)=(0.752486,0.7384,0.376814); rgb(46pt)=(0.785843,0.735567,0.363271); rgb(47pt)=(0.818505,0.732733,0.34979); rgb(48pt)=(0.850657,0.7299,0.336029); rgb(49pt)=(0.882433,0.727433,0.3217); rgb(50pt)=(0.913933,0.725786,0.306276); rgb(51pt)=(0.944957,0.726114,0.288643); rgb(52pt)=(0.973895,0.731395,0.266648); rgb(53pt)=(0.993771,0.745457,0.240348); rgb(54pt)=(0.999043,0.765314,0.216414); rgb(55pt)=(0.995533,0.786057,0.196652); rgb(56pt)=(0.988,0.8066,0.179367); rgb(57pt)=(0.978857,0.827143,0.163314); rgb(58pt)=(0.9697,0.848138,0.147452); rgb(59pt)=(0.962586,0.870514,0.1309); rgb(60pt)=(0.958871,0.8949,0.113243); rgb(61pt)=(0.959824,0.921833,0.0948381); rgb(62pt)=(0.9661,0.951443,0
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment