Grafico con quantità di punti abnormale

  • Questo topic ha 2 risposte, 3 partecipanti ed è stato aggiornato l'ultima volta 7 anni fa da OldClaudio.
  • Creatore
    Topic
  • #116283
    Up
    0
    Down
    ::


    Buonasera a tutti. Ho un pò di problemi con un grafico che mi produce il seguente errore:

    `TeX capacity exceeded, sorry [main memory size=3000000]. };`
    premetto il grafico è abnorme. Ho un dato di concentrazione ogni 10 minuti per quasi 121 giorni. Ecco l’esempio minimo compatibile.
    Main:
    `
    % !TEX encoding = UTF-8 Unicode
    % !TEX TS-program = pdflatex
    % !TEX spellcheck = it-IT
    % !TEX root = Tesi_Main.tex

    \documentclass[11pt,a4paper,twoside]{book}
    %\usepackage[a4paper,top=2.5cm,bottom=2.5cm,left=2cm,right=2cm]{geometry} % cambiare la geometria del decumento
    \usepackage[T1]{fontenc}
    \usepackage{textcomp}

    \usepackage{lmodern}
    \usepackage[utf8]{inputenc}

    \usepackage[italian]{babel}

    \input{pacchetti_tesi}

    \begin{document}

    \pagenumbering{roman}
    %\input{MaterialeInizialeFinale/Titolo}

    \frontmatter

    %\tableofcontents
    %\listoffigures
    %\listoftables
    %\input{MaterialeInizialeFinale/Glossario}
    %\input{MaterialeInizialeFinale/Introduzione}

    \mainmatter
    \pagenumbering{arabic}

    %\input{Capitoli/Oscar}
    \input{Capitoli/ASM1eStatoArte}
    \input{Capitoli/Impianto}
    %\input{Capitoli/Dati_resp}
    %
    %\input{Capitoli/Cal_Val}

    %\input{Capitoli/Futuro}
    %\input{MaterialeInizialeFinale/Ringraziamenti}

    \backmatter

    \appendix
    %\input{Appendici}

    %\clearpage
    %\phantomsection
    %\addcontentsline{toc}{chapter}{\refname}
    %\nocite{*}
    %\printbibliography

    \end{document}
    `

    pacchetti_tesi

    `
    \usepackage{url} % per scrivere gli indirizzi Internet

    %pacchetti matematici
    \usepackage{emptypage}
    \usepackage{amsmath,amsfonts}
    \usepackage{amssymb}
    \usepackage{mathtools}

    \usepackage{stmaryrd}
    \SetSymbolFont{stmry}{bold}{U}{stmry}{m}{n}

    \usepackage{multicol} % per la gestione delle multicolonne
    \usepackage{stmaryrd} % contiene simboli matematici e non
    %\usepackage{wasysym}
    %\usepackage{mathrsfs} % contiene altri simboli matematici e non
    \usepackage{eucal} % sets up some font shape definitions to use the Euler script symbols in math mode.
    \usepackage{pdflscape} % per ruotare le pagine e pdf

    \usepackage{array} % An ex­tended im­ple­men­ta­tion of the ar­ray and tab­u­lar en­vi­ron­ments which ex­tends the op­tions for col­umn for­mats
    \usepackage{color}
    \usepackage{colortbl} % per colorare le celle delle tabelle, richiede pacchetti array e color

    \newcolumntype{L}{>{$\displaystyle}l<{$}} \newcolumntype{C}{>{$\displaystyle}c<{$}} \newcolumntype{R}{>{$\displaystyle}r<{$}} %\usepackage{etoolbox} % per programmare e modificare i pacchetti di altri autori \usepackage{graphicx} % per aumentare i drive presenti in teX, come ruotare i grafici testi ecc ecc \usepackage{wrapfig} % per didascalie avvolte nel testo \usepackage{subfig} % più performante rispetto subfigure \usepackage{multirow} % per gestire le multirighe \usepackage{parskip} % pacchetto per la non indentazione del paragrafo \usepackage{rotating} % per ruotare le tabelle \usepackage{enumitem} % per elenchi con label \usepackage{lipsum} % genera testo fittizi \usepackage{caption} % per generare le didascalie \captionsetup{ labelformat=simple, % simple senza parentesi, parens con le parentesi font={it}, labelsep=space, labelfont=bf, justification=centerlast } \usepackage{siunitx} \sisetup{ output-decimal-marker = {,}, exponent-product = \cdot, group-digits=true, group-minimum-digits = 3, group-separator = \text{~}, % table-parse-only, % parse-numbers=false, } \DeclareSIUnit{\abitant}{ab} \DeclareSIUnit{\abiequi}{AE} \usepackage{fancyhdr} \pagestyle{fancy} \renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}} \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}} \fancyhf{} \fancyfoot[C]{\thepage} \fancyhead[RO]{\bfseries\rightmark} \fancyhead[LE]{\bfseries\leftmark} \renewcommand{\headrulewidth}{0.5pt} \renewcommand{\footrulewidth}{0pt} \setlength{\headheight}{14.5pt} \definecolor{light-gray}{gray}{0.9} \definecolor{applegreen}{rgb}{0.55, 0.71, 0.0} \definecolor{blue(munsell)}{rgb}{0.0, 0.5, 0.69} \definecolor{darkred}{rgb}{0.55, 0.0, 0.0} \usepackage{listings} %settaggio per il pacchetto listings \lstset{columns=fullflexible,language=C++,numbers=left, backgroundcolor=\color{white}, basicstyle=\small\ttfamily, showspaces = false, breaklines= false, keywordstyle=\color{applegreen}, commentstyle=\color{darkred}, stepnumber=2, numberstyle=\tiny, emph={void, public, LOW, HIGH, OUTPUT, int, String, float, const, long, class},emphstyle=\color{blue(munsell)}, emph={[2]else, if, return, setup, while, loop}, emphstyle={[2]\color{applegreen}}, emph={[3]digitalWrite, pinMode, analogRead, Serial, println, begin, abs, readString},emphstyle={[3]\color{orange}}, literate={è}{{\`e }}1 {é}{{\'e }}1 {ì}{{\`i }}1 {à}{{\`a }}1 {ù}{{\`u }}1 {ò}{{\`o }}1 {À}{{\'A }}1 {È}{{\`E }}1 {É}{{\`E }}1 {Ì}{{\`I }}1 {Ò}{{\`o }}1 {Ù}{{\`U }}1 } \lstloadlanguages{C++} \usepackage[dvipsnames]{xcolor} % per aggiungere nuovi colori %serie di pacchetti per la stesura con Latex di grafici e disegni \usepackage{tikz} \usetikzlibrary{shapes.gates.logic.US,trees,positioning} \usetikzlibrary{backgrounds} \usetikzlibrary{decorations.pathmorphing,backgrounds,fit,calc,through} \usetikzlibrary{arrows.meta} \usetikzlibrary{shapes,decorations,shadows} \usetikzlibrary{fadings} \usetikzlibrary{patterns} \usetikzlibrary{mindmap} \usetikzlibrary{decorations.text} \usetikzlibrary{decorations.shapes} \tikzset{% >={Latex[width=2mm,length=2mm]},
    % Specifications for style of nodes:
    base/.style = {rectangle, rounded corners, draw=black,minimum width=3cm, minimum height=1cm,text centered, font=\sffamily},
    base2/.style = {rectangle, rounded corners, draw=black,minimum width=2cm, minimum height=1cm,text centered, font=\sffamily},
    punkt/.style={rectangle, corners, draw=black, text centered},
    pretrattamenti/.style = {base, fill=YellowOrange},
    fanghi/.style = {base, fill=RawSienna!30},
    controlli/.style = {base2, fill=green!30},
    acque/.style = {base, minimum width=2.5cm, fill=Aquamarine, font=\ttfamily},
    punkt/.style={rectangle, draw=black, text centered},
    }

    \usepackage{booktabs} % fornisce comandi più performanti per tabelle e grafici come midrule toprule bottomrule
    \usepackage{tabularx} % per stabilire autonomamente la larghezza delle tabelle
    \usepackage{sidecap} % per le didascalie laterali
    \usepackage{placeins} % per mantenere gli oggetti flottanti al loro posto attraverso il comando FloatBarrier
    \usepackage{longtable} % per fare tabelle più lunghe di una pagina

    \usepackage{float} %migliora l'interfaccia per la definizione di oggetti mobili (figure e tabelle)

    \usepackage{upgreek}
    \usepackage{chemmacros}
    \chemsetup{
    phases/pos=sub,
    modules=all,
    formula=chemformula
    }
    \usepackage{chemgreek}

    \usepackage{epigraph}

    \usepackage[autostyle,italian=guillemets]{csquotes}
    \usepackage[maxbibnames=99, sorting=none, style=numeric-comp, hyperref, backend=biber]{biblatex}
    \bibliography{Bibliografia}

    \addbibresource{Bibliografia.bib}

    \usepackage{pdfpages} %per inserire i pdf nel documento

    \usepackage{pgfplots} % pacchetto per grafici
    \pgfplotsset{compat=newest}

    \SendSettingsToPgf

    \usepackage{hyperref} % per riferimenti
    \hypersetup{
    colorlinks = true,
    urlcolor = blue,
    linkcolor = black, % il colore dei link è nero
    }

    `

    il codice specifico del grafico

    `
    \begin{figure}[!htb]
    \centering
    \begin{tikzpicture}[scale=0.8]
    \begin{axis}
    [
    only marks,
    width = \textwidth,
    height = \textwidth,
    xlabel = {$Tempo~(giorni)$},
    ylabel = {$Concentrazione~(\SI{}{\milli\gram\per\liter})$}
    ]
    \addplot coordinates
    {
    ( 0.000 , 0.603 )
    ( 0.007 , 0.644 )
    ( 0.014 , 0.744 )
    ( 0.021 , 0.558 )
    ( 0.028 , 0.319 )
    ( 0.035 , 0.226 )
    ( 0.042 , 0.036 )
    ( 0.049 , 0.026 )
    ( 0.056 , 0.034 )
    ( 0.063 , 0.027 )
    ( 0.069 , 0.013 )
    ( 0.076 , 0.05 )
    ( 0.083 , 0.022 )
    ( 0.090 , 0.215 )
    ( 0.097 , 0.643 )
    ( 0.104 , 0.395 )
    ( 0.111 , 0.031 )
    ( 0.118 , 0.021 )
    ( 0.125 , 0.067 )
    ( 0.132 , 0.026 )
    ( 0.139 , 0.027 )
    ( 0.146 , 0.036 )
    ( 0.153 , 0.052 )
    ( 0.160 , 0.016 )
    ( 0.167 , 0.027 )
    ( 0.174 , 0.044 )
    ( 0.181 , 0.02 )
    ( 0.188 , 0.173 )
    ( 0.194 , 0.701 )
    ( 0.201 , 0.517 )
    ( 0.208 , 0.531 )
    ( 0.215 , 0.152 )
    ( 0.222 , 0.078 )
    ( 0.229 , 0.027 )
    ( 0.236 , 0.027 )
    ( 0.243 , 0.054 )
    ( 0.250 , 0.052 )
    ( 0.257 , 0.03 )
    ( 0.264 , 0.014 )
    ( 0.271 , 0.04 )
    ( 0.278 , 0.016 )
    ( 0.285 , 0.241 )
    ( 0.292 , 0.668 )
    ( 0.299 , 0.385 )
    ( 0.306 , 0.026 )
    ( 0.313 , 0.032 )
    ( 0.319 , 0.053 )
    ( 0.326 , 0.024 )
    ( 0.333 , 0.026 )
    ( 0.340 , 0.036 )
    ( 0.347 , 0.044 )
    ( 0.354 , 0.029 )
    ( 0.361 , 0.021 )
    ( 0.368 , 0.059 )
    ( 0.375 , 0.021 )
    ( 0.382 , 0.268 )
    ( 0.389 , 0.797 )
    ( 0.396 , 0.444 )
    ( 0.403 , 0.034 )
    ( 0.410 , 0.068 )
    ( 0.417 , 0.711 )
    ( 0.424 , 0.274 )
    ( 0.431 , 0.102 )
    ( 0.437 , 0.688 )
    ( 0.444 , 0.323 )
    ( 0.451 , 0.032 )
    ( 0.458 , 0.018 )
    ( 0.465 , 0.052 )
    ( 0.472 , 0.03 )
    ( 0.479 , 0.213 )
    ( 0.486 , 0.644 )
    ( 0.493 , 0.563 )
    ( 0.500 , 0.432 )
    ( 0.507 , 0.244 )
    ( 0.514 , 0.123 )
    ( 0.521 , 0.045 )
    ( 0.528 , 0.022 )
    ( 0.535 , 0.036 )
    ( 0.542 , 0.034 )
    ( 0.549 , 0.22 )
    ( 0.556 , 0.678 )
    ( 0.562 , 0.624 )
    ( 0.569 , 0.59 )
    ( 0.576 , 0.645 )
    ( 0.583 , 0.675 )
    ( 0.590 , 0.767 )
    ( 0.597 , 0.708 )
    ( 0.604 , 0.654 )
    ( 0.611 , 0.67 )
    ( 0.618 , 0.676 )
    ( 0.625 , 1.078 )
    ( 0.632 , 1.084 )
    ( 0.639 , 0.425 )
    ( 0.646 , 0.169 )
    ( 0.653 , 0.027 )
    ( 0.660 , 0.053 )
    ( 0.667 , 0.015 )
    ( 0.674 , 0.016 )
    ( 0.681 , 0.089 )
    ( 0.687 , 0.021 )
    ( 0.694 , 0.135 )
    ( 0.701 , 0.657 )
    ( 0.708 , 0.56 )
    ( 0.715 , 0.535 )
    ( 0.722 , 0.591 )
    ( 0.729 , 0.739 )
    ( 0.736 , 0.607 )
    ( 0.743 , 0.587 )
    ( 0.750 , 0.63 )
    ( 0.757 , 0.607 )
    ( 0.764 , 0.602 )
    ( 0.771 , 0.038 )
    ( 0.778 , 0.012 )
    ( 0.785 , 0.012 )
    ( 0.792 , 0.055 )
    ( 0.799 , 0.021 )
    ( 0.806 , 0.014 )
    ( 0.812 , 0.077 )
    ( 0.819 , 0.045 )
    ( 0.826 , 0.01 )
    ( 0.833 , 0.076 )
    ( 0.840 , 0.025 )
    ( 0.847 , 0.03 )
    ( 0.854 , 0.542 )
    ( 0.861 , 0.581 )
    ( 0.868 , 0.598 )
    ( 0.875 , 0.57 )
    ( 0.882 , 0.594 )
    ( 0.889 , 0.568 )
    ( 0.896 , 0.579 )
    ( 0.903 , 0.586 )
    ( 0.910 , 0.64 )
    ( 0.917 , 0.603 )
    ( 0.924 , 0.439 )
    ( 0.931 , 0.062 )
    ( 0.937 , 0.01 )
    ( 0.944 , 0.053 )
    ( 0.951 , 0.021 )
    ( 0.958 , 0.018 )
    ( 0.965 , 0.028 )
    ( 0.972 , 0.042 )
    ( 0.979 , 0.014 )
    ( 0.986 , 0.018 )
    ( 0.993 , 0.033 )
    ( 1.000 , 0.013 )
    ( 1.007 , 0.134 )
    ( 1.014 , 0.542 )
    ( 1.021 , 0.601 )
    ( 1.028 , 0.561 )
    ( 1.035 , 0.268 )
    ( 1.042 , 0.117 )
    ( 1.049 , 0.014 )
    ( 1.056 , 0.137 )
    ( 1.063 , 0.477 )
    ( 1.069 , 0.591 )
    ( 1.076 , 0.544 )
    ( 1.083 , 0.618 )
    ( 1.090 , 0.633 )
    ( 1.097 , 0.613 )
    ( 1.104 , 0.555 )
    ( 1.111 , 0.636 )
    ( 1.118 , 0.56 )
    ( 1.125 , 0.591 )
    ( 1.132 , 0.03 )
    ( 1.139 , 0.013 )
    ( 1.146 , 0.017 )
    ( 1.153 , 0.062 )
    ( 1.160 , 0.015 )
    ( 1.167 , 0.019 )
    ( 1.174 , 0.204 )
    ( 1.181 , 0.397 )
    ( 1.188 , 0.237 )
    ( 1.194 , 0.111 )
    ( 1.201 , 0.018 )
    ( 1.208 , 0.023 )
    ( 1.215 , 0.518 )
    ( 1.222 , 0.547 )
    ( 1.229 , 0.118 )
    ( 1.236 , 0.021 )
    ( 1.243 , 0.018 )
    ( 1.250 , 0.064 )
    ( 1.257 , 0.019 )
    ( 1.264 , 0.021 )
    ( 1.271 , 0.056 )
    ( 1.278 , 0.021 )
    ( 1.285 , 0.015 )
    ( 1.292 , 0.063 )
    ( 1.299 , 0.041 )
    ( 1.306 , 0.032 )
    ( 1.313 , 0.567 )
    ( 1.319 , 0.56 )
    ( 1.326 , 0.422 )
    ( 1.333 , 0.155 )
    ( 1.340 , 0.018 )
    ( 1.347 , 0.058 )
    ( 1.354 , 0.549 )
    ( 1.361 , 0.415 )
    ( 1.368 , 0.121 )
    ( 1.375 , 0.019 )
    ( 1.382 , 0.015 )
    ( 1.389 , 0.052 )
    ( 1.396 , 0.03 )
    ( 1.403 , 0.051 )
    ( 1.410 , 0.575 )
    ( 1.417 , 0.677 )
    ( 1.424 , 0.182 )
    ( 1.431 , 0.068 )
    ( 1.438 , 0.023 )
    ( 1.444 , 0.069 )
    ( 1.451 , 0.022 )
    ( 1.458 , 0.031 )
    ( 1.465 , 0.062 )
    ( 1.472 , 0.036 )
    ( 1.479 , 0.028 )
    ( 1.486 , 0.059 )
    ( 1.493 , 0.022 )
    ( 1.500 , 0.029 )
    ( 1.507 , 0.67 )
    ( 1.514 , 0.618 )
    ( 1.521 , 0.041 )
    ( 1.528 , 0.032 )
    ( 1.535 , 0.024 )
    ( 1.542 , 0.067 )
    ( 1.549 , 0.025 )
    ( 1.556 , 0.023 )
    ( 1.563 , 0.097 )
    ( 1.569 , 0.065 )
    ( 1.576 , 0.564 )
    ( 1.583 , 0.636 )
    ( 1.590 , 0.586 )
    ( 1.597 , 0.643 )
    ( 1.604 , 0.523 )
    ( 1.611 , 0.575 )
    ( 1.618 , 0.603 )
    ( 1.625 , 0.59 )
    ( 1.632 , 0.657 )
    ( 1.639 , 0.587 )
    ( 1.646 , 0.589 )
    ( 1.653 , 0.612 )
    ( 1.660 , 0.603 )
    ( 1.667 , 0.04 )
    ( 1.674 , 0.014 )
    ( 1.681 , 0.024 )
    ( 1.688 , 0.09 )
    ( 1.694 , 0.01 )
    ( 1.701 , 0.019 )
    ( 1.708 , 0.107 )
    ( 1.715 , 0.047 )
    ( 1.722 , 0.013 )
    ( 1.729 , 0.052 )
    ( 1.736 , 0.024 )
    ( 1.743 , 0.091 )
    ( 1.750 , 0.557 )
    ( 1.757 , 0.454 )
    ( 1.764 , 0.592 )
    ( 1.771 , 0.495 )
    ( 1.778 , 0.57 )
    ( 1.785 , 0.649 )
    ( 1.792 , 0.466 )
    ( 1.799 , 0.608 )
    ( 1.806 , 0.546 )
    ( 1.812 , 0.53 )
    ( 1.819 , 0.674 )
    ( 1.826 , 0.418 )
    ( 1.833 , 0.063 )
    ( 1.840 , 0.021 )
    ( 1.847 , 0.041 )
    ( 1.854 , 0.033 )
    ( 1.861 , 0.02 )
    ( 1.868 , 0.064 )
    ( 1.875 , 0.017 )
    ( 1.882 , 0.011 )
    ( 1.889 , 0.022 )
    ( 1.896 , 0.047 )
    ( 1.903 , 0.029 )
    ( 1.910 , 0.268 )
    ( 1.917 , 0.544 )
    ( 1.924 , 0.246 )
    ( 1.931 , 0.042 )
    ( 1.937 , 0.024 )
    ( 1.944 , 0.049 )
    ( 1.951 , 0.031 )
    ( 1.958 , 0.184 )
    ( 1.965 , 0.515 )
    ( 1.972 , 0.515 )
    ( 1.979 , 0.437 )
    ( 1.986 , 0.5 )
    ( 1.993 , 0.502 )
    ( 2.000 , 0.536 )
    ( 2.007 , 0.63 )
    ( 2.014 , 0.549 )
    ( 2.021 , 0.531 )
    ( 2.028 , 0.512 )
    ( 2.035 , 0.582 )
    ( 2.042 , 0.3 )
    ( 2.049 , 0.02 )
    ( 2.056 , 0.01 )
    ( 2.063 , 0.051 )
    ( 2.069 , 0.024 )
    ( 2.076 , 0.013 )
    ( 2.083 , 0.058 )
    ( 2.090 , 0.025 )
    ( 2.097 , 0.019 )
    ( 2.104 , 0.015 )
    ( 2.111 , 0.05 )
    ( 2.118 , 0.023 )
    ( 2.125 , 0.162 )
    ( 2.132 , 0.534 )
    ( 2.139 , 0.343 )
    ( 2.146 , 0.037 )
    ( 2.153 , 0.028 )
    ( 2.160 , 0.044 )
    ( 2.167 , 0.021 )
    ( 2.174 , 0.021 )
    ( 2.181 , 0.029 )
    ( 2.188 , 0.027 )
    ( 2.194 , 0.017 )
    ( 2.201 , 0.02 )
    ( 2.208 , 0.045 )
    ( 2.215 , 0.023 )
    ( 2.222 , 0.234 )
    ( 2.229 , 0.523 )
    ( 2.236 , 0.345 )
    ( 2.243 , 0.02 )
    ( 2.250 , 0.021 )
    ( 2.257 , 0.043 )
    ( 2.264 , 0.025 )
    ( 2.271 , 0.019 )
    ( 2.278 , 0.056 )
    ( 2.285 , 0.057 )
    ( 2.292 , 0.018 )
    ( 2.299 , 0.022 )
    ( 2.306 , 0.046 )
    ( 2.313 , 0.021 )
    ( 2.319 , 0.255 )
    ( 2.326 , 0.581 )
    ( 2.333 , 0.344 )
    ( 2.340 , 0.075 )
    ( 2.347 , 0.023 )
    ( 2.354 , 0.045 )
    ( 2.361 , 0.022 )
    ( 2.368 , 0.022 )
    ( 2.375 , 0.048 )
    ( 2.382 , 0.033 )
    ( 2.389 , 0.029 )
    ( 2.396 , 0.03 )
    ( 2.403 , 0.056 )
    ( 2.410 , 0.024 )
    ( 2.417 , 0.343 )
    ( 2.424 , 0.602 )
    ( 2.431 , 0.479 )
    ( 2.438 , 0.655 )
    ( 2.444 , 0.542 )
    ( 2.451 , 0.646 )
    ( 2.458 , 0.563 )
    ( 2.465 , 0.616 )
    ( 2.472 , 0.578 )
    ( 2.479 , 0.66 )
    ( 2.486 , 0.306 )
    ( 2.493 , 0.02 )
    ( 2.500 , 0.042 )
    ( 2.507 , 0.101 )
    ( 2.514 , 0.031 )
    ( 2.521 , 0.02 )
    ( 2.528 , 0.074 )
    ( 2.535 , 0.032 )
    ( 2.542 , 0.02 )
    ( 2.549 , 0.039 )
    ( 2.556 , 0.053 )
    ( 2.563 , 0.028 )
    ( 2.569 , 0.316 )
    ( 2.576 , 0.662 )
    ( 2.583 , 0.43 )
    ( 2.590 , 0.461 )
    ( 2.597 , 0.572 )
    ( 2.604 , 0.212 )
    ( 2.611 , 0.217 )
    ( 2.618 , 0.587 )
    ( 2.625 , 0.179 )
    ( 2.632 , 0.027 )
    ( 2.639 , 0.017 )
    ( 2.646 , 0.031 )
    ( 2.653 , 0.037 )
    ( 2.660 , 0.243 )
    ( 2.667 , 0.533 )
    ( 2.674 , 0.509 )
    ( 2.681 , 0.538 )
    ( 2.688 , 0.584 )
    ( 2.694 , 0.554 )
    ( 2.701 , 0.605 )
    ( 2.708 , 0.629 )
    ( 2.715 , 0.61 )
    ( 2.722 , 0.567 )
    ( 2.729 , 0.641 )
    ( 2.736 , 0.576 )
    ( 2.743 , 0.109 )
    ( 2.750 , 0.02 )
    ( 2.757 , 0.037 )
    ( 2.764 , 0.034 )
    ( 2.771 , 0.013 )
    ( 2.778 , 0.021 )
    ( 2.785 , 0.041 )
    ( 2.792 , 0.012 )
    ( 2.799 , 0.016 )
    ( 2.806 , 0.051 )
    ( 2.813 , 0.016 )
    ( 2.819 , 0.276 )
    ( 2.826 , 0.596 )
    ( 2.833 , 0.603 )
    ( 2.840 , 0.537 )
    ( 2.847 , 0.55 )
    ( 2.854 , 0.533 )
    ( 2.861 , 0.552 )
    ( 2.868 , 0.676 )
    ( 2.875 , 0.513 )
    ( 2.882 , 0.48 )
    ( 2.889 , 0.601 )
    ( 2.896 , 0.561 )
    ( 2.903 , 0.457 )
    ( 2.910 , 0.037 )
    ( 2.917 , 0.008 )
    ( 2.924 , 0.031 )
    ( 2.931 , 0.011 )
    ( 2.938 , 0.009 )
    ( 2.944 , 0.013 )
    ( 2.951 , 0.037 )
    ( 2.958 , 0.019 )
    ( 2.965 , 0.015 )
    ( 2.972 , 0.036 )
    ( 2.979 , 0.028 )
    ( 2.986 , 0.148 )
    ( 2.993 , 0.587 )
    ( 3.000 , 0.356 )
    ( 3.007 , 0.014 )
    ( 3.014 , 0.013 )
    ( 3.021 , 0.033 )
    ( 3.028 , 0.015 )
    ( 3.035 , 0.01 )
    ( 3.042 , 0.017 )
    ( 3.049 , 0.031 )
    ( 3.056 , 0.019 )
    ( 3.063 , 0.507 )
    ( 3.069 , 0.63 )
    ( 3.076 , 0.503 )
    ( 3.083 , 0.561 )
    ( 3.090 , 0.509 )
    ( 3.097 , 0.5 )
    ( 3.104 , 0.476 )
    ( 3.111 , 0.689 )
    ( 3.118 , 0.598 )
    ( 3.125 , 0.506 )
    ( 3.132 , 0.507 )
    ( 3.139 , 0.531 )
    ( 3.146 , 0.359 )
    ( 3.153 , 0.184 )
    ( 3.160 , 0.084 )
    ( 3.167 , 0.013 )
    ( 3.174 , 0.012 )
    ( 3.181 , 0.054 )
    ( 3.188 , 0.017 )
    ( 3.194 , 0.02 )
    ( 3.201 , 0.052 )
    ( 3.208 , 0.072 )
    ( 3.215 , 0.062 )
    ( 3.222 , 0.319 )
    ( 3.229 , 0.655 )
    ( 3.236 , 0.418 )
    ( 3.243 , 0.387 )
    ( 3.250 , 0.058 )
    ( 3.257 , 0.083 )
    ( 3.264 , 0.021 )
    ( 3.271 , 0.032 )
    ( 3.278 , 0.031 )
    ( 3.285 , 0.026 )
    ( 3.292 , 0.019 )
    ( 3.299 , 0.073 )
    ( 3.306 , 0.03 )
    ( 3.313 , 0.025 )
    ( 3.319 , 0.416 )
    ( 3.326 , 0.653 )
    ( 3.333 , 0.198 )
    ( 3.340 , 0.034 )
    ( 3.347 , 0.021 )
    ( 3.354 , 0.091 )
    ( 3.361 , 0.03 )
    ( 3.368 , 0.025 )
    ( 3.375 , 0.07 )
    ( 3.382 , 0.065 )
    ( 3.389 , 0.028 )
    ( 3.396 , 0.059 )
    ( 3.403 , 0.024 )
    ( 3.410 , 0.029 )
    ( 3.417 , 0.358 )
    ( 3.424 , 0.654 )
    ( 3.431 , 0.732 )
    ( 3.438 , 0.644 )
    ( 3.444 , 0.661 )
    ( 3.451 , 0.483 )
    ( 3.458 , 0.03 )
    ( 3.465 , 0.028 )
    ( 3.472 , 0.086 )
    ( 3.479 , 0.026 )
    ( 3.486 , 0.046 )
    ( 3.493 , 0.576 )
    ( 3.500 , 0.619 )
    ( 3.507 , 0.557 )
    ( 3.514 , 0.69 )
    ( 3.521 , 0.577 )
    ( 3.528 , 0.648 )
    ( 3.535 , 0.692 )
    ( 3.542 , 0.644 )
    ( 3.549 , 0.71 )
    ( 3.556 , 0.31 )
    ( 3.563 , 0.034 )
    ( 3.569 , 0.023 )
    ( 3.576 , 0.048 )
    ( 3.583 , 0.033 )
    ( 3.590 , 0.017 )
    ( 3.597 , 0.06 )
    ( 3.604 , 0.021 )
    ( 3.611 , 0.291 )
    ( 3.618 , 0.605 )
    ( 3.625 , 0.591 )
    ( 3.632 , 0.643 )
    ( 3.639 , 0.624 )
    ( 3.646 , 0.601 )
    ( 3.653 , 0.559 )
    ( 3.660 , 0.634 )
    ( 3.667 , 0.68 )
    ( 3.674 , 0.655 )
    ( 3.681 , 0.641 )
    ( 3.688 , 0.599 )
    ( 3.694 , 0.732 )
    ( 3.701 , 0.706 )
    ( 3.708 , 0.71 )
    ( 3.715 , 0.788 )
    ( 3.722 , 0.495 )
    ( 3.729 , 0.05 )
    ( 3.736 , 0.025 )
    ( 3.743 , 0.076 )
    ( 3.750 , 0.022 )
    ( 3.757 , 0.012 )
    ( 3.764 , 0.011 )
    ( 3.771 , 0.041 )
    ( 3.778 , 0.019 )
    ( 3.785 , 0.187 )
    ( 3.792 , 0.688 )
    ( 3.799 , 0.517 )
    ( 3.806 , 0.677 )
    ( 3.813 , 0.629 )
    ( 3.819 , 0.5 )
    ( 3.826 , 0.629 )
    ( 3.833 , 0.54 )
    ( 3.840 , 0.598 )
    ( 3.847 , 0.676 )
    ( 3.854 , 0.686 )
    ( 3.861 , 0.626 )
    ( 3.868 , 0.624 )
    ( 3.875 , 0.147 )
    ( 3.882 , 0.002 )
    ( 3.889 , 0.004 )
    ( 3.896 , 0.037 )
    ( 3.903 , 0.008 )
    ( 3.910 , 0.011 )
    ( 3.917 , 0.03 )
    ( 3.924 , 0.01 )
    ( 3.931 , 0.01 )
    ( 3.938 , 0.056 )
    ( 3.944 , 0.011 )
    ( 3.951 , 0.009 )
    ( 3.958 , 0.318 )
    ( 3.965 , 0.558 )
    ( 3.972 , 0.447 )
    ( 3.979 , 0.282 )
    ( 3.986 , 0.19 )
    ( 3.993 , 0.539 )
    ( 4.000 , 0.534 )
    ( 4.007 , 0.558 )
    ( 4.014 , 0.613 )
    ( 4.021 , 0.649 )
    ( 4.028 , 0.517 )
    ( 4.035 , 0.549 )
    ( 4.042 , 0.641 )
    ( 4.049 , 0.622 )
    ( 4.056 , 0.6 )
    ( 4.063 , 0.716 )
    ( 4.069 , 0.297 )
    ( 4.076 , 0.003 )
    ( 4.083 , 0.005 )
    ( 4.090 , 0.023 )
    ( 4.097 , 0.01 )
    ( 4.104 , 0.01 )
    ( 4.111 , 0.036 )
    ( 4.118 , 0.009 )
    ( 4.125 , 0.01 )
    ( 4.132 , 0.027 )
    ( 4.139 , 0.106 )
    ( 4.146 , 0.02 )
    ( 4.153 , 0.326 )
    ( 4.160 , 0.511 )
    ( 4.167 , 0.457 )
    ( 4.174 , 0.413 )
    ( 4.181 , 0.105 )
    ( 4.188 , 0.04 )
    ( 4.194 , 0.014 )
    ( 4.201 , 0.013 )
    ( 4.208 , 0.128 )
    ( 4.215 , 0.79 )
    ( 4.222 , 0.783 )
    ( 4.229 , 0.689 )
    ( 4.236 , 0.795 )
    ( 4.243 , 1.011 )
    ( 4.250 , 0.702 )
    ( 4.257 , 0.523 )
    ( 4.264 , 0.663 )
    ( 4.271 , 0.587 )
    ( 4.278 , 0.127 )
    ( 4.285 , 0.041 )
    ( 4.292 , 0.012 )
    ( 4.299 , 0.012 )
    ( 4.306 , 0.042 )
    ( 4.313 , 0.011 )
    ( 4.319 , 0.012 )
    ( 4.326 , 0.041 )
    ( 4.333 , 0.03 )
    ( 4.340 , 0.013 )
    ( 4.347 , 0.293 )
    ( 4.354 , 0.545 )
    ( 4.361 , 0.267 )
    ( 4.368 , 0.043 )
    ( 4.375 , 0.01 )
    ( 4.382 , 0.05 )
    ( 4.389 , 0.014 )
    ( 4.396 , 0.01 )
    ( 4.403 , 0.061 )
    ( 4.410 , 0.017 )
    ( 4.417 , 0.021 )
    ( 4.424 , 0.507 )
    ( 4.431 , 0.502 )
    ( 4.438 , 0.629 )
    ( 4.444 , 0.707 )
    ( 4.451 , 0.561 )
    ( 4.458 , 0.558 )
    ( 4.465 , 0.617 )
    ( 4.472 , 0.613 )
    ( 4.479 , 0.749 )
    ( 4.486 , 0.61 )
    ( 4.493 , 1.067 )
    ( 4.500 , 0.799 )
    ( 4.507 , 0.313 )
    ( 4.514 , 0.05 )
    ( 4.521 , 0.01 )
    ( 4.528 , 0.01 )
    ( 4.535 , 0.081 )
    ( 4.542 , 0.01 )
    ( 4.549 , 0.01 )
    ( 4.556 , 0.045 )
    ( 4.563 , 0.01 )
    ( 4.569 , 0.167 )
    ( 4.576 , 0.553 )
    ( 4.583 , 0.559 )
    ( 4.590 , 0.626 )
    ( 4.597 , 0.561 )
    ( 4.604 , 0.494 )
    ( 4.611 , 0.568 )
    ( 4.618 , 0.649 )
    ( 4.625 , 0.631 )
    ( 4.632 , 0.571 )
    ( 4.639 , 0.608 )
    ( 4.646 , 0.704 )
    ( 4.653 , 0.664 )
    ( 4.660 , 0.555 )
    ( 4.667 , 0.631 )
    ( 4.674 , 0.647 )
    ( 4.681 , 0.56 )
    ( 4.688 , 0.155 )
    ( 4.694 , 0.005 )
    ( 4.701 , 0.003 )
    ( 4.708 , 0.032 )
    ( 4.715 , 0.004 )
    ( 4.722 , 0.387 )
    ( 4.729 , 0.529 )
    ( 4.736 , 0.531 )
    ( 4.743 , 0.551 )
    ( 4.750 , 0.531 )
    ( 4.757 , 0.566 )
    ( 4.764 , 0.634 )
    ( 4.771 , 0.568 )
    ( 4.778 , 0.615 )
    ( 4.785 , 0.652 )
    ( 4.792 , 0.6 )
    ( 4.799 , 0.155 )
    ( 4.806 , 0.047 )
    ( 4.813 , 0.016 )
    ( 4.819 , 0.013 )
    ( 4.826 , 0.003 )
    ( 4.833 , 0.004 )
    ( 4.840 , 0.057 )
    ( 4.847 , 0.006 )
    ( 4.854 , 0.009 )
    ( 4.861 , 0.048 )
    ( 4.868 , 0.01 )
    ( 4.875 , 0.21 )
    ( 4.882 , 0.488 )
    ( 4.889 , 0.621 )
    ( 4.896 , 0.572 )
    ( 4.903 , 0.528 )
    ( 4.910 , 0.614 )
    ( 4.917 , 0.552 )
    ( 4.924 , 0.54 )
    ( 4.931 , 0.55 )
    ( 4.938 , 0.544 )
    ( 4.944 , 0.608 )
    ( 4.951 , 0.617 )
    ( 4.958 , 0.608 )
    ( 4.965 , 0.33 )
    ( 4.972 , 0.052 )
    ( 4.979 , 0.002 )
    ( 4.986 , 0.043 )
    ( 4.993 , 0.014 )
    ( 5.000 , 0.007 )
    ( 5.007 , 0.042 )
    ( 5.014 , 0.009 )
    ( 5.021 , 0.009 )
    ( 5.028 , 0.015 )
    ( 5.035 , 0.033 )
    ( 5.042 , 0.01 )
    ( 5.049 , 0.429 )
    ( 5.056 , 0.528 )
    ( 5.063 , 0.506 )
    ( 5.069 , 0.508 )
    ( 5.076 , 0.519 )
    ( 5.083 , 0.563 )
    ( 5.090 , 0.507 )
    ( 5.097 , 0.527 )
    ( 5.104 , 0.587 )
    ( 5.111 , 0.644 )
    ( 5.118 , 0.489 )
    ( 5.125 , 0.589 )
    ( 5.132 , 0.581 )
    ( 5.139 , 0.436 )
    ( 5.146 , 0.257 )
    ( 5.153 , 0.007 )
    ( 5.160 , 0.008 )
    ( 5.167 , 0.04 )
    ( 5.174 , 0.008 )
    ( 5.181 , 0.007 )
    ( 5.188 , 0.03 )
    ( 5.194 , 0.036 )
    ( 5.201 , 0.01 )
    ( 5.208 , 0.265 )
    ( 5.215 , 0.5 )
    ( 5.222 , 0.275 )
    ( 5.229 , 0.008 )
    ( 5.236 , 0.009 )
    ( 5.243 , 0.039 )
    ( 5.250 , 0.01 )
    ( 5.257 , 0.01 )
    ( 5.264 , 0.057 )
    ( 5.271 , 0.011 )
    ( 5.278 , 0.01 )
    ( 5.285 , 0.014 )
    ( 5.292 , 0.037 )
    ( 5.299 , 0.008 )
    ( 5.306 , 0.25 )
    ( 5.313 , 0.552 )
    ( 5.319 , 0.297 )
    ( 5.326 , 0.01 )
    ( 5.333 , 0.01 )
    ( 5.340 , 0.037 )
    ( 5.347 , 0.01 )
    ( 5.354 , 0.009 )
    ( 5.361 , 0.043 )
    ( 5.368 , 0.015 )
    ( 5.375 , 0.01 )
    ( 5.382 , 0.013 )
    ( 5.389 , 0.036 )
    ( 5.396 , 0.009 )
    ( 5.403 , 0.288 )
    ( 5.410 , 0.529 )
    ( 5.417 , 0.903 )
    ( 5.424 , 1.325 )
    ( 5.431 , 0.745 )
    ( 5.438 , 0.308 )
    ( 5.444 , 0.016 )
    ( 5.451 , 0.324 )
    ( 5.458 , 0.534 )
    ( 5.465 , 0.551 )
    ( 5.472 , 0.542 )
    ( 5.479 , 0.567 )
    ( 5.486 , 0.613 )
    ( 5.493 , 0.581 )
    ( 5.500 , 0.582 )
    ( 5.507 , 0.586 )
    ( 5.514 , 0.372 )
    ( 5.521 , 0.012 )
    ( 5.528 , 0.005 )
    ( 5.535 , 0.051 )
    ( 5.542 , 0.018 )
    ( 5.549 , 0.013 )
    ( 5.556 , 0.032 )
    ( 5.563 , 0.022 )
    ( 5.569 , 0.01 )
    ( 5.576 , 0.01 )
    ( 5.583 , 0.067 )
    ( 5.590 , 0.021 )
    ( 5.597 , 0.531 )
    ( 5.604 , 0.512 )
    ( 5.611 , 0.584 )
    ( 5.618 , 0.571 )
    ( 5.625 , 0.644 )
    ( 5.632 , 0.522 )
    ( 5.639 , 0.615 )
    ( 5.646 , 0.562 )
    ( 5.653 , 0.624 )
    ( 5.660 , 0.702 )
    ( 5.667 , 0.594 )
    ( 5.674 , 0.581 )
    ( 5.681 , 0.576 )
    ( 5.688 , 0.646 )
    ( 5.694 , 0.677 )
    ( 5.701 , 0.628 )
    ( 5.708 , 0.6 )
    ( 5.715 , 0.63 )
    ( 5.722 , 0.648 )
    ( 5.729 , 0.643 )
    ( 5.736 , 0.107 )
    ( 5.743 , 0 )
    ( 5.750 , 0 )
    ( 5.757 , 0.036 )
    ( 5.764 , 0.002 )
    ( 5.771 , 0.493 )
    ( 5.778 , 0.583 )
    ( 5.785 , 0.595 )
    ( 5.792 , 0.525 )
    ( 5.799 , 0.576 )
    ( 5.806 , 0.607 )
    ( 5.813 , 0.606 )
    ( 5.819 , 0.595 )
    ( 5.826 , 0.624 )
    ( 5.833 , 0.59 )
    ( 5.840 , 0.602 )
    ( 5.847 , 0.695 )
    ( 5.854 , 0.155 )
    ( 5.861 , 0 )
    ( 5.868 , 0 )
    ( 5.875 , 0.033 )
    ( 5.882 , 0 )
    ( 5.889 , 0.003 )
    ( 5.896 , 0.05 )
    ( 5.903 , 0.004 )
    ( 5.910 , 0.006 )
    ( 5.917 , 0.381 )
    ( 5.924 , 0.429 )
    ( 5.931 , 0.466 )
    ( 5.938 , 0.478 )
    ( 5.944 , 0.6 )
    ( 5.951 , 0.601 )
    ( 5.958 , 0.478 )
    ( 5.965 , 0.606 )
    ( 5.972 , 0.568 )
    ( 5.979 , 0.538 )
    ( 5.986 , 0.554 )
    ( 5.993 , 0.519 )
    ( 6.000 , 0.618 )
    ( 6.007 , 0.645 )
    ( 6.014 , 0.63 )
    ( 6.021 , 0.682 )
    ( 6.028 , 0.408 )
    ( 6.035 , 0.061 )
    ( 6.042 , 0.062 )
    ( 6.049 , 0.001 )
    ( 6.056 , 0.003 )
    ( 6.063 , 0.061 )
    ( 6.069 , 0.004 )
    ( 6.076 , 0.017 )
    ( 6.083 , 0.498 )
    ( 6.090 , 0.464 )
    ( 6.097 , 0.477 )
    ( 6.104 , 0.543 )
    ( 6.111 , 0.507 )
    ( 6.118 , 0.598 )
    ( 6.125 , 0.579 )
    ( 6.132 , 0.53 )
    ( 6.139 , 0.596 )
    ( 6.146 , 0.341 )
    ( 6.153 , 0.092 )
    ( 6.160 , 0 )
    ( 6.167 , 0.039 )
    ( 6.174 , 0.003 )
    ( 6.181 , 0.002 )
    ( 6.188 , 0.045 )
    ( 6.194 , 0.026 )
    ( 6.201 , 0.006 )
    ( 6.208 , 0.038 )
    ( 6.215 , 0.008 )
    ( 6.222 , 0.008 )
    ( 6.229 , 0.456 )
    ( 6.236 , 0.517 )
    ( 6.243 , 0.184 )
    ( 6.250 , 0.019 )
    ( 6.257 , 0.005 )
    ( 6.264 , 0.028 )
    ( 6.271 , 0.006 )
    ( 6.278 , 0.01 )
    ( 6.285 , 0.038 )
    ( 6.292 , 0.01 )
    ( 6.299 , 0.01 )
    ( 6.306 , 0.055 )
    ( 6.313 , 0.012 )
    ( 6.319 , 0.095 )
    ( 6.326 , 0.568 )
    ( 6.333 , 0.496 )
    ( 6.340 , 0.573 )
    ( 6.347 , 0.46 )
    ( 6.354 , 0.607 )
    ( 6.361 , 0.58 )
    ( 6.368 , 0.617 )
    ( 6.375 , 0.568 )
    ( 6.382 , 0.685 )
    ( 6.389 , 0.543 )
    ( 6.396 , 0.475 )
    ( 6.403 , 0.006 )
    ( 6.410 , 0 )
    ( 6.417 , 0.016 )
    ( 6.424 , 0.003 )
    ( 6.431 , 0.004 )
    ( 6.438 , 0 )
    ( 6.444 , 0.066 )
    ( 6.451 , 0.058 )
    ( 6.458 , 0.258 )
    ( 6.465 , 0.497 )
    ( 6.472 , 0.58 )
    ( 6.479 , 0.549 )
    ( 6.486 , 0.492 )
    ( 6.493 , 0.577 )
    ( 6.500 , 0.583 )
    ( 6.507 , 0.595 )
    ( 6.514 , 0.662 )
    ( 6.521 , 0.556 )
    ( 6.528 , 0.001 )
    ( 6.535 , 0 )
    ( 6.542 , 0.044 )
    ( 6.549 , 0.005 )
    ( 6.556 , 0.001 )
    ( 6.563 , 0.002 )
    ( 6.569 , 0.038 )
    ( 6.576 , 0.001 )
    ( 6.583 , 0.195 )
    ( 6.590 , 0.543 )
    ( 6.597 , 0.504 )
    ( 6.604 , 0.509 )
    ( 6.611 , 0.7 )
    ( 6.618 , 0.522 )
    ( 6.625 , 0.603 )
    ( 6.632 , 0.543 )
    ( 6.639 , 0.603 )
    ( 6.646 , 0.373 )
    ( 6.653 , 0.127 )
    ( 6.660 , 0.001 )
    ( 6.667 , 0.028 )
    ( 6.674 , 0.001 )
    ( 6.681 , 0.005 )
    ( 6.688 , 0.039 )
    ( 6.694 , 0.014 )
    ( 6.701 , 0.051 )
    ( 6.708 , 0.559 )
    ( 6.715 , 0.49 )
    ( 6.722 , 0.512 )
    ( 6.729 , 0.547 )
    ( 6.736 , 0.57 )
    ( 6.743 , 0.517 )
    ( 6.750 , 0.603 )
    ( 6.757 , 0.645 )
    ( 6.764 , 0.675 )
    ( 6.771 , 0.605 )
    ( 6.778 , 0.775 )
    ( 6.785 , 0.422 )
    ( 6.792 , 0.241 )
    ( 6.799 , 0.092 )
    ( 6.806 , 0.014 )
    ( 6.813 , 0.009 )
    ( 6.819 , 0.038 )
    ( 6.826 , 0 )
    ( 6.833 , 0.001 )
    ( 6.840 , 0.032 )
    ( 6.847 , 0.001 )
    ( 6.854 , 0.33 )
    ( 6.861 , 0.522 )
    ( 6.868 , 0.542 )
    ( 6.875 , 0.564 )
    ( 6.882 , 0.542 )
    ( 6.889 , 0.573 )
    ( 6.896 , 0.553 )
    ( 6.903 , 0.628 )
    ( 6.910 , 0.602 )
    ( 6.917 , 0.563 )
    ( 6.924 , 0.603 )
    ( 6.931 , 0.554 )
    ( 6.938 , 0.521 )
    ( 6.944 , 0.628 )
    ( 6.951 , 0.274 )
    ( 6.958 , 0.052 )
    ( 6.965 , 0 )
    ( 6.972 , 0.035 )
    ( 6.979 , 0 )
    ( 6.986 , 0 )
    ( 6.993 , 0.035 )
    ( 7.000 , 0 )
    ( 7.007 , 0.001 )
    ( 7.014 , 0.024 )
    ( 7.021 , 0.013 )
    ( 7.028 , 0.129 )
    ( 7.035 , 0.523 )
    ( 7.042 , 0.515 )
    ( 7.049 , 0.493 )
    ( 7.056 , 0.545 )
    ( 7.063 , 0.488 )
    ( 7.069 , 0.538 )
    ( 7.076 , 0.508 )
    ( 7.083 , 0.534 )
    ( 7.090 , 0.637 )
    ( 7.097 , 0.6 )
    ( 7.104 , 0.534 )
    ( 7.111 , 0.337 )
    ( 7.118 , 0.057 )
    ( 7.125 , 0 )
    ( 7.132 , 0.032 )
    ( 7.139 , 0 )
    ( 7.146 , 0.003 )
    ( 7.153 , 0.032 )
    ( 7.160 , 0.001 )
    ( 7.167 , 0 )
    ( 7.174 , 0.004 )
    ( 7.181 , 0.029 )
    ( 7.188 , 0.004 )
    ( 7.194 , 0.223 )
    ( 7.201 , 0.473 )
    ( 7.208 , 0.556 )
    ( 7.215 , 0.723 )
    ( 7.222 , 0.429 )
    ( 7.229 , 0.165 )
    ( 7.236 , 0.027 )
    ( 7.243 , 0.005 )
    ( 7.250 , 0.047 )
    ( 7.257 , 0.024 )
    ( 7.264 , 0.005 )
    ( 7.271 , 0.004 )
    ( 7.278 , 0.03 )
    ( 7.285 , 0.007 )
    ( 7.292 , 0.223 )
    ( 7.299 , 0.456 )
    ( 7.306 , 0.312 )
    ( 7.313 , 0.133 )
    ( 7.319 , 0.007 )
    ( 7.326 , 0.037 )
    ( 7.333 , 0.003 )
    ( 7.340 , 0.002 )
    ( 7.347 , 0.025 )
    ( 7.354 , 0.009 )
    ( 7.361 , 0.007 )
    ( 7.368 , 0.015 )
    ( 7.375 , 0.047 )
    ( 7.382 , 0.008 )
    ( 7.389 , 0.259 )
    ( 7.396 , 0.59 )
    ( 7.403 , 0.248 )
    ( 7.410 , 0.002 )
    ( 7.417 , 0.003 )
    ( 7.424 , 0.042 )
    ( 7.431 , 0.01 )
    ( 7.438 , 0.007 )
    ( 7.444 , 0.034 )
    ( 7.451 , 0.008 )
    ( 7.458 , 0.008 )
    ( 7.465 , 0.006 )
    ( 7.472 , 0.039 )
    ( 7.479 , 0.009 )
    ( 7.486 , 0.011 )
    ( 7.493 , 0.008 )
    ( 7.500 , 0.036 )
    ( 7.507 , 0.308 )
    ( 7.514 , 0.337 )
    ( 7.521 , 0.241 )
    ( 7.528 , 0.033 )
    ( 7.535 , 0.025 )
    ( 7.542 , 0.415 )
    ( 7.549 , 0.516 )
    ( 7.556 , 0.526 )
    ( 7.563 , 0.581 )
    ( 7.569 , 0.523 )
    ( 7.576 , 0.568 )
    ( 7.583 , 0.593 )
    ( 7.590 , 0.552 )
    ( 7.597 , 0.529 )
    ( 7.604 , 0.007 )
    ( 7.611 , 0 )
    ( 7.618 , 0.027 )
    ( 7.625 , 0.006 )
    ( 7.632 , 0 )
    ( 7.639 , 0 )
    ( 7.646 , 0.034 )
    ( 7.653 , 0.003 )
    ( 7.660 , 0.004 )
    ( 7.667 , 0.023 )
    ( 7.674 , 0.004 )
    ( 7.681 , 0.058 )
    ( 7.688 , 0.519 )
    ( 7.694 , 0.419 )
    ( 7.701 , 0.007 )
    ( 7.708 , 0 )
    ( 7.715 , 0.031 )
    ( 7.722 , 0.011 )
    ( 7.729 , 0.003 )
    ( 7.736 , 0.003 )
    ( 7.743 , 0.4 )
    ( 7.750 , 0.544 )
    ( 7.757 , 0.599 )
    ( 7.764 , 0.565 )
    ( 7.771 , 0.612 )
    ( 7.778 , 0.602 )
    ( 7.785 , 0.66 )
    ( 7.792 , 0.798 )
    ( 7.799 , 0.116 )
    ( 7.806 , 0 )
    ( 7.813 , 0 )
    ( 7.819 , 0.135 )
    ( 7.826 , 0.02 )
    ( 7.833 , 0 )
    ( 7.840 , 0.043 )
    ( 7.847 , 0.004 )
    ( 7.854 , 0.002 )
    ( 7.861 , 0.039 )
    ( 7.868 , 0.005 )
    ( 7.875 , 0.013 )
    ( 7.882 , 0.538 )
    ( 7.889 , 0.654 )
    ( 7.896 , 0.014 )
    ( 7.903 , 0.002 )
    ( 7.910 , 0.008 )
    ( 7.917 , 0.13 )
    ( 7.924 , 0.104 )
    ( 7.931 , 0.405 )
    ( 7.938 , 0.529 )
    ( 7.944 , 0.572 )
    ( 7.951 , 0.624 )
    ( 7.958 , 0.77 )
    ( 7.965 , 0.624 )
    ( 7.972 , 0.622 )
    ( 7.979 , 0.652 )
    ( 7.986 , 0.699 )
    ( 7.993 , 0.605 )
    ( 8.000 , 0.33 )
    ( 8.007 , 0.036 )
    ( 8.014 , 0.037 )
    ( 8.021 , 0.003 )
    ( 8.028 , 0 )
    ( 8.035 , 0.038 )
    ( 8.042 , 0.006 )
    ( 8.049 , 0.002 )
    ( 8.056 , 0.005 )
    ( 8.063 , 0.211 )
    ( 8.069 , 0.684 )
    ( 8.076 , 0.549 )
    ( 8.083 , 0.535 )
    ( 8.090 , 0.274 )
    ( 8.097 , 0.01 )
    ( 8.104 , 0.001 )
    ( 8.111 , 0.025 )
    ( 8.118 , 0.004 )
    ( 8.125 , 0.008 )
    ( 8.132 , 0.034 )
    ( 8.139 , 0.008 )
    ( 8.146 , 0.009 )
    ( 8.153 , 0.01 )
    ( 8.160 , 0.032 )
    ( 8.167 , 0.009 )
    ( 8.174 , 0.271 )
    ( 8.181 , 0.61 )
    ( 8.188 , 0.509 )
    ( 8.194 , 0.593 )
    ( 8.201 , 0.654 )
    ( 8.208 , 0.645 )
    ( 8.215 , 0.579 )
    ( 8.222 , 0.696 )
    ( 8.229 , 0.026 )
    ( 8.236 , 0.003 )
    ( 8.243 , 0.008 )
    ( 8.250 , 0.049 )
    ( 8.257 , 0.009 )
    ( 8.264 , 0.006 )
    ( 8.271 , 0.059 )
    ( 8.278 , 0.006 )
    ( 8.285 , 0.014 )
    ( 8.292 , 0.042 )
    ( 8.299 , 0.01 )
    ( 8.306 , 0.009 )
    ( 8.313 , 0.587 )
    ( 8.319 , 0.65 )
    ( 8.326 , 0.03 )
    ( 8.333 , 0.009 )
    ( 8.340 , 0.01 )
    ( 8.347 , 0.024 )
    ( 8.354 , 0.009 )
    ( 8.361 , 0.01 )
    ( 8.368 , 0.01 )
    ( 8.375 , 0.009 )
    ( 8.382 , 0.01 )
    ( 8.389 , 0.009 )
    ( 8.396 , 0.031 )
    ( 8.403 , 0.466 )
    ( 8.410 , 0.499 )
    ( 8.417 , 0.5 )
    ( 8.424 , 0.37 )
    ( 8.431 , 0.147 )
    ( 8.438 , 0.018 )
    ( 8.444 , 0.048 )
    ( 8.451 , 0.01 )
    ( 8.458 , 0.01 )
    ( 8.465 , 0.398 )
    ( 8.472 , 0.57 )
    ( 8.479 , 0.666 )
    ( 8.486 , 0.636 )
    ( 8.493 , 0.597 )
    ( 8.500 , 0.608 )
    ( 8.507 , 0.645 )
    ( 8.514 , 0.748 )
    ( 8.521 , 0.236 )
    ( 8.528 , 0.006 )
    ( 8.535 , 0.009 )
    ( 8.542 , 0.034 )
    ( 8.549 , 0.004 )
    ( 8.556 , 0.006 )
    ( 8.563 , 0.045 )
    ( 8.569 , 0.014 )
    ( 8.576 , 0.009 )
    ( 8.583 , 0.031 )
    ( 8.590 , 0.013 )
    ( 8.597 , 0.129 )
    ( 8.604 , 0.581 )
    ( 8.611 , 0.536 )
    ( 8.618 , 0.717 )
    ( 8.625 , 0.521 )
    ( 8.632 , 0.662 )
    ( 8.639 , 0.67 )
    ( 8.646 , 0.748 )
    ( 8.653 , 0.701 )
    ( 8.660 , 0.523 )
    ( 8.667 , 0.001 )
    ( 8.674 , 0.001 )
    ( 8.681 , 0.047 )
    ( 8.688 , 0.006 )
    ( 8.694 , 0.002 )
    ( 8.701 , 0.005 )
    ( 8.708 , 0.058 )
    ( 8.715 , 0.003 )
    ( 8.722 , 0.009 )
    ( 8.729 , 0.043 )
    ( 8.736 , 0.01 )
    ( 8.743 , 0.124 )
    ( 8.750 , 0.508 )
    ( 8.757 , 0.442 )
    ( 8.764 , 0.066 )
    ( 8.771 , 0.008 )
    ( 8.778 , 0.091 )
    ( 8.785 , 0.011 )
    ( 8.792 , 0.009 )
    ( 8.799 , 0.416 )
    ( 8.806 , 0.602 )
    ( 8.813 , 0.526 )
    ( 8.819 , 0.622 )
    ( 8.826 , 0.761 )
    ( 8.833 , 0.656 )
    ( 8.840 , 0.632 )
    ( 8.847 , 0.581 )
    ( 8.854 , 0.674 )
    ( 8.861 , 0.399 )
    ( 8.868 , 0.001 )
    ( 8.875 , 0 )
    ( 8.882 , 0.023 )
    ( 8.889 , 0 )
    ( 8.896 , 0.006 )
    ( 8.903 , 0.027 )
    ( 8.910 , 0.009 )
    ( 8.917 , 0.007 )
    ( 8.924 , 0.008 )
    ( 8.931 , 0.097 )
    ( 8.938 , 0.041 )
    ( 8.944 , 0.201 )
    ( 8.951 , 0.517 )
    ( 8.958 , 0.437 )
    ( 8.965 , 0.008 )
    ( 8.972 , 0.1 )
    ( 8.979 , 0.576 )
    ( 8.986 , 0.65 )
    ( 8.993 , 0.598 )
    ( 9.000 , 0.614 )
    ( 9.007 , 0.638 )
    ( 9.014 , 0.587 )
    ( 9.021 , 0.708 )
    ( 9.028 , 0.775 )
    ( 9.035 , 1.067 )
    ( 9.042 , 0.709 )
    ( 9.049 , 0.407 )
    ( 9.056 , 0.003 )
    ( 9.063 , 0.008 )
    ( 9.069 , 0.037 )
    ( 9.076 , 0.028 )
    ( 9.083 , 0.015 )
    ( 9.090 , 0.008 )
    ( 9.097 , 0.039 )
    ( 9.104 , 0.008 )
    ( 9.111 , 0.204 )
    ( 9.118 , 0.571 )
    ( 9.125 , 0.424 )
    ( 9.132 , 0.245 )
    ( 9.139 , 0.011 )
    ( 9.146 , 0.042 )
    ( 9.153 , 0.01 )
    ( 9.160 , 0.01 )
    ( 9.167 , 0.049 )
    ( 9.174 , 0.013 )
    ( 9.181 , 0.01 )
    ( 9.188 , 0.01 )
    ( 9.194 , 0.035 )
    ( 9.201 , 0.009 )
    ( 9.208 , 0.323 )
    ( 9.215 , 0.684 )
    ( 9.222 , 0.29 )
    ( 9.229 , 0.01 )
    ( 9.236 , 0.008 )
    ( 9.243 , 0.039 )
    ( 9.250 , 0.01 )
    ( 9.257 , 0.01 )
    ( 9.264 , 0.028 )
    ( 9.271 , 0.016 )
    ( 9.278 , 0.009 )
    ( 9.285 , 0.01 )
    ( 9.292 , 0.046 )
    ( 9.299 , 0.009 )
    ( 9.306 , 0.218 )
    ( 9.313 , 0.616 )
    ( 9.319 , 0.39 )
    ( 9.326 , 0.064 )
    ( 9.333 , 0.01 )
    ( 9.340 , 0.047 )
    ( 9.347 , 0.01 )
    ( 9.354 , 0.01 )
    ( 9.361 , 0.03 )
    ( 9.368 , 0.013 )
    ( 9.375 , 0.083 )
    ( 9.382 , 0.649 )
    ( 9.389 , 0.621 )
    ( 9.396 , 0.676 )
    ( 9.403 , 0.646 )
    ( 9.410 , 0.644 )
    ( 9.417 , 0.707 )
    ( 9.424 , 0.647 )
    ( 9.431 , 0.451 )
    ( 9.438 , 0.093 )
    ( 9.444 , 0.008 )
    ( 9.451 , 0.062 )
    ( 9.458 , 0.242 )
    ( 9.465 , 0.078 )
    ( 9.472 , 0.06 )
    ( 9.479 , 0.012 )
    ( 9.486 , 0.009 )
    ( 9.493 , 0.009 )
    ( 9.500 , 0.066 )
    ( 9.507 , 0.01 )
    ( 9.514 , 0.243 )
    ( 9.521 , 0.614 )
    ( 9.528 , 0.346 )
    ( 9.535 , 0.306 )
    ( 9.542 , 0.044 )
    ( 9.549 , 0.054 )
    ( 9.556 , 0.008 )
    ( 9.563 , 0.01 )
    ( 9.569 , 0.041 )
    ( 9.576 , 0.015 )
    ( 9.583 , 0.168 )
    ( 9.590 , 0.548 )
    ( 9.597 , 0.627 )
    ( 9.604 , 0.672 )
    ( 9.611 , 0.723 )
    ( 9.618 , 0.673 )
    ( 9.625 , 0.762 )
    ( 9.632 , 0.684 )
    ( 9.639 , 0.659 )
    ( 9.646 , 0.554 )
    ( 9.653 , 0.45 )
    ( 9.660 , 0.279 )
    ( 9.667 , 0.148 )
    ( 9.674 , 0.014 )
    ( 9.681 , 0.01 )
    ( 9.688 , 0.045 )
    ( 9.694 , 0.01 )
    ( 9.701 , 0.009 )
    ( 9.708 , 0.036 )
    ( 9.715 , 0.029 )
    ( 9.722 , 0.01 )
    ( 9.729 , 0.255 )
    ( 9.736 , 0.625 )
    ( 9.743 , 0.454 )
    ( 9.750 , 0.194 )
    ( 9.757 , 0.029 )
    ( 9.764 , 0.049 )
    ( 9.771 , 0.01 )
    ( 9.778 , 0.32 )
    ( 9.785 , 0.686 )
    ( 9.792 , 0.657 )
    ( 9.799 , 0.633 )
    ( 9.806 , 0.604 )
    ( 9.813 , 0.715 )
    ( 9.819 , 0.69 )
    ( 9.826 , 0.739 )
    ( 9.833 , 0.548 )
    ( 9.840 , 0.236 )
    ( 9.847 , 0.013 )
    ( 9.854 , 0.05 )
    ( 9.861 , 0.009 )
    ( 9.868 , 0.009 )
    ( 9.875 , 0.023 )
    ( 9.882 , 0.039 )
    ( 9.889 , 0.011 )
    ( 9.896 , 0.01 )
    ( 9.903 , 0.503 )
    ( 9.910 , 0.546 )
    ( 9.917 , 0.643 )
    ( 9.924 , 0.614 )
    ( 9.931 , 0.701 )
    ( 9.938 , 0.759 )
    ( 9.944 , 0.681 )
    ( 9.951 , 0.68 )
    ( 9.958 , 0.008 )
    ( 9.965 , 0.007 )
    ( 9.972 , 0.016 )
    ( 9.979 , 0.051 )
    ( 9.986 , 0.015 )
    ( 9.993 , 0.011 )
    ( 10.000 , 0.043 )


    };
    \legend{$Ossigeno$}
    \end{axis}
    \end{tikzpicture}
    \caption{Concentrazione di ossigeno e ammoniaca in vasca per il periodo di Calibrazione.}
    \label{plot:calibrazione}
    \end{figure}
    \FloatBarrier
    `

    Non ho inserito tutti i punti perchè ve li risparmio. Spero non ci siano errori di altra sorta, per quelli vi ho messo main e pacchetti. Se avete suggerimenti programmi esterni o simili…o trucchi del mestiere e volete condividerli con me vi ringrazio già in anticipo.

    buona serata, Gabriele.

Visualizzazione 1 filone di risposte
  • Autore
    Risposte
    • #116284
      Massimiliano
      Partecipante
        Up
        0
        Down
        ::


        Ciao eleirbaG,

        So che esiste la possibilità di aumentare la “memoria” per evitare il problema ma io non sono mai riuscito a far funzionare i comandi (trovi le istruzioni su diversi siti).
        Io come soluzione ti proporrei di usare un programma esterno per fare il grafico e importare quello (alcuni possono essere MatLab, Octave che è uguale a matlab ma gratuito ed R)

        Spero di esserti stato utile
        PS se servisse una mano per programma Octave chiedi pure

      • #116285
        OldClaudio
        Partecipante
          Up
          0
          Down
          ::


          Tanto epr ridere un poco cerca di non inventarti le paole; ebnormale non esiste; abnorme esiste.

          MA dopo questa battuta leggi questo post:

          https://github.com/matlab2tikz/matlab2tikz/wiki/TeX-capacity-exceeded,-sorry

          Risolve direttamente il tuo problema, nel senso che vi si risponde indicando i vari modi con i quali si può evitare di incorrere in questo errore;

          Il punto è che qualunque installazione che tu stia usando MikTeX, TeXLive, MacTeX, una volta cambiati i parametri nel file texmf.cnf, devi ricostruire tutti i file di formato; In quel post Per TeX Live e MAc si fa riferimento al programma texhack, ma ora ci sono programmi più adatti; in particolare mktexfmt-sys (o anche senza -sys, ma `è meglio usare la versino con -sys) che devi lanciare da terminale con le prerogative di superuser. Puoi mettere un cifra doppia di quella che appare nel tuo messaggio, ma non esagerare, perché comunque la RAM del tuo calcolatore è comunque limitata.

          Detto questo ti faccio un’altra domanda: che senso ha produrre un diagramma (statistico/) con i campioni misurati ogni 10 minuti per 121 giorni? se non mi spagli quello vuol dire 8640 dati al giorno per un totale di 1045440 campioni; Se tracci il diagramma in una pagina in cui ilo specchio di stampa è di 16cm, come succede con le classi normali, ti ritroveresti con 6534 punti in ogni milllimetro di disegno il che, se si tratta di dati statistici, quindi aleatori attorno ad una media, vuol dire un rettangolo colorato ogni millimetro di diagramma, in sostanza un diagramma illeggibile.

          La soluzione non consiste tanto nell’aumento della memoria, ma nell’approccio sbagliato alla presentazione dei dati.

          Ripensaci e vedrai che troverai una soluzione migliore; non posso consigliarti nulla perché anche se hai allegato qualche dato, non risco a farmi un’idea del tutto effettivo diagramma.

      Visualizzazione 1 filone di risposte
      • Devi essere connesso per rispondere a questo topic.

      Go to top