Skip to content
Snippets Groups Projects
Select Git revision
  • a03568e39d5cd296e4d2fc9ff3f53f1de0d5715b
  • master default protected
  • version2
  • update_bulma_fontawesome
  • privacy_notification
  • specify_target_asset_app
  • v2.2.24
  • v2.3.0
  • v2.2.23
  • v2.2.22
  • v2.2.21
  • v2.2.20
  • v2.2.19
  • v2.2.18
  • v2.2.17
  • v2.2.16
  • v2.2.15
  • v2.2.14
  • v2.2.13
  • v2.2.12
  • v2.2.11
  • v2.2.10
  • v2.2.9
  • v2.2.8
  • v2.2.7
  • v2.2.6
26 results

requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    examplePlot.tex 1.16 KiB
    \documentclass[11pt,ngerman]{HsH-standalone}
    
    %__________Formeln und Mathe________________
    \usepackage{siunitx} % kennt SI einheiten
    \usepackage{amsmath} % schöne Formeln
    
    %__________Daten Import_____________________
    \usepackage{pgfplots,pgfplotstable} % plots und bilder, enthält tikz und graphix
    
    \begin{document} %----------------------Inhalt---------------------------------------------------%
    
    \begin{tikzpicture}
    	\begin{axis}[MyPlots]
    		\addplot[FM1,domain=-1:1, name path=A]{x^2};
    		\addplot[FM2,mark=none,domain=-1:1, name path=B]{0.5*x^2-1};
    		\addplot[pattern color=gray!40, pattern=dots] fill between[of=A and B];
    	\end{axis}
    \end{tikzpicture}
    
    \begin{tikzpicture}
    \pgfplotstableread{../csv/bsp.csv}\data
    	\begin{axis}[MyPlots,
    		xlabel=X Achse, ylabel=$\percent$,
    		]
    		\addplot[FM1,errBars] table [x=A,y=C,y error=D] {\data};
    			\addlegendentry{Messdaten}
    		\addplot[FM2,smooth] table [x=A,y=C] {\data};
    			\addlegendentry{theroretische Werte}
    		\addplot[FM4] table [x=A,y={create col/linear regression={y=C}}] {\data};
    			\addlegendentry{lineariesiert zu: $y=\num\pgfplotstableregressiona*x+\num\pgfplotstableregressionb$}
    	\end{axis}
    \end{tikzpicture}
    
    \end{document}