Select Git revision
-
Imran Iqbal authored
Use the following command: ``` $ GREP_SED="\(repo\.salt\)stack\.com" \ && grep -rl --exclude-dir=.git "${GREP_SED}" \ | grep -v .un~$ \ | xargs sed -i -e "/${GREP_SED}/s//\1project.io/g" ```
Imran Iqbal authoredUse the following command: ``` $ GREP_SED="\(repo\.salt\)stack\.com" \ && grep -rl --exclude-dir=.git "${GREP_SED}" \ | grep -v .un~$ \ | xargs sed -i -e "/${GREP_SED}/s//\1project.io/g" ```
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}