pgfplots: ファイルから取得した数値を使用して変数を定義するにはどうすればよいでしょうか?

pgfplots: ファイルから取得した数値を使用して変数を定義するにはどうすればよいでしょうか?

科学的なトピックに取り組んでいるときに、次のことが可能かどうか疑問に思いました。 コマンドを使用して、複数の指数曲線をプロットしたいのです\addplot。 問題は、指数をハードコードするのではなく、テキスト ファイルから読み取る必要があることです。 どうすればこれを実現できるでしょうか。 自分が何を望んでいるかを明確にするために、MWE を作成しました。

%% MWE for SX: Defining variables with numbers taken from a file
\documentclass{standalone}

\usepackage[utf8]{inputenx}
\usepackage[T1]{fontenc}
%% Use only sans-serif fonts; change to serif if desired
\renewcommand*\sfdefault{phv}
\renewcommand*{\familydefault}{\sfdefault}
\usepackage{arevmath}

\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{units}
\usetikzlibrary{spy, backgrounds}
\usepackage{pgfplotstable}
\usepackage{xcolor}
\usepackage{amsmath}
%% To read variables from file
\usepackage{datatool}
\usepackage{filecontents}

\newlength\figurewidth
\newlength\figureheight
\newlength\marksize

\begin{document}
%% Width and height of the output figure, adapt as necessary
\setlength{\figurewidth}{13cm}
\setlength{\figureheight}{8cm}
\setlength{\marksize}{2.4pt}
\setlength{\linewidth}{1pt}

%% Define the file in here, as whole files cannot be uploaded to Tex.SE
\begin{filecontents}{LsqExponents.csv}
4.012,3.456,2.345
\end{filecontents}
%% Now read these three values from the file
\DTLloaddb[noheader, keys={b_annu, b_rest, b_stra}]{LsqExponents}{LsqExponents.csv}
%\DTLdisplaydb{LsqExponents}

\begin{tikzpicture}[font=\large]

\begin{axis}[%
width=\figurewidth,
height=\figureheight,
scale only axis,
xmin=0.05,
xmax=0.5,
xtick={0.1,0.2,0.3,0.4,0.5},
xlabel={$\text{T G S } \gamma_\mathrm{g} \text{ (-)}$},
%xmajorgrids,
ymin=0,
ymax=0.12,
ylabel={$\text{G R P } h_\mathrm{g} \text{ (-)}$},
yticklabel style={/pgf/number format/fixed,
/pgf/number format/precision=2,
/pgf/number format/fixed zerofill},
%ymajorgrids,
name=plot1,
legend pos=north west,
legend style={anchor=north west,draw=black,fill=white,legend cell align=left, rounded corners=2pt, nodes={inner sep=4pt,text depth=0pt}}
]
%% Fits and functions
\addplot [color=cyan, solid, domain=0:0.5] {x^4.567};
\addlegendentry{Original TD Fit};

\addplot [color=magenta, dashed, domain=0:0.5] {x^3.456};
\addlegendentry{TD-like Fit for Rest};

\addplot [color=black, dashed, domain=0:0.5] {x^2.345};
\addlegendentry{TD-like Fit for Stra};

\end{axis}

\end{tikzpicture}

\end{document}

ご覧のとおり、指数はハードコードされています(65-71行目)が、csvファイル(事前に別のプログラムで生成)から取得した浮動小数点変数である必要があります。datatoolパッケージですが、自分のニーズに合わせてそれをどのように使用できるか、あるいは使用できるかどうかさえわかりません。\DTLdisplaydb{LsqExponents}コマンドは失敗するため、MWE でコメント アウトされています。

したがって、解決策は次の 2 つのステップで構成されると考えられます。

  1. LaTeX/Tikz で 3 つの数値を個別の変数として取得します。
  2. ハードコードされた指数をこれらの変数に置き換えます。

どのような助けでも大歓迎です!

答え1

ここでは、スペースで区切られたデータを読み取るパッケージを使用して実装しますreadarray。重要な行は次のとおりです。

\begin{filecontents*}{LsqExponents.ssv}
4.012 3.456 2.345
\end{filecontents*}
%% Now read these three values from the file
\readdef{LsqExponents.ssv}{\mydatadef}
\readArrayij{\mydatadef}{mydata}{1}

これは、ファイルの内容を という\def名前の に読み込みます。次に、列幅 = 1 という名前の 2 次元配列構造(つまり、実質的に 1 次元配列)\mydatadefから読み取り、並べ替えます。データ値には、次のようにアクセスします。\mydatadefmydata\arrayij{mydata}{<row value>}{1}

%% MWE for SX: Defining variables with numbers taken from a file
\documentclass{standalone}

\usepackage[utf8]{inputenx}
\usepackage[T1]{fontenc}
%% Use only sans-serif fonts; change to serif if desired
\renewcommand*\sfdefault{phv}
\renewcommand*{\familydefault}{\sfdefault}
\usepackage{arevmath}

\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{units}
\usetikzlibrary{spy, backgrounds}
\usepackage{pgfplotstable}
\usepackage{xcolor}
\usepackage{amsmath}
%% To read variables from file
\usepackage{readarray}
\usepackage{filecontents}

\newlength\figurewidth
\newlength\figureheight
\newlength\marksize

\begin{document}
%% Width and height of the output figure, adapt as necessary
\setlength{\figurewidth}{13cm}
\setlength{\figureheight}{8cm}
\setlength{\marksize}{2.4pt}
\setlength{\linewidth}{1pt}

%% Define the file in here, as whole files cannot be uploaded to Tex.SE
\begin{filecontents*}{LsqExponents.ssv}
4.012 3.456 2.345
\end{filecontents*}
%% Now read these three values from the file
\readdef{LsqExponents.ssv}{\mydatadef}
\readArrayij{\mydatadef}{mydata}{1}

\begin{tikzpicture}[font=\large]

\begin{axis}[%
width=\figurewidth,
height=\figureheight,
scale only axis,
xmin=0.05,
xmax=0.5,
xtick={0.1,0.2,0.3,0.4,0.5},
xlabel={$\text{T G S } \gamma_\mathrm{g} \text{ (-)}$},
%xmajorgrids,
ymin=0,
ymax=0.12,
ylabel={$\text{G R P } h_\mathrm{g} \text{ (-)}$},
yticklabel style={/pgf/number format/fixed,
/pgf/number format/precision=2,
/pgf/number format/fixed zerofill},
%ymajorgrids,
name=plot1,
legend pos=north west,
legend style={anchor=north west,draw=black,fill=white,legend cell align=left, rounded corners=2pt, nodes={inner sep=4pt,text depth=0pt}}
]
%% Fits and functions
\addplot [color=cyan, solid, domain=0:0.5] {x^\arrayij{mydata}{1}{1}};
\addlegendentry{Original TD Fit};

\addplot [color=magenta, dashed, domain=0:0.5] {x^\arrayij{mydata}{2}{1}};
\addlegendentry{TD-like Fit for Rest};

\addplot [color=black, dashed, domain=0:0.5] {x^\arrayij{mydata}{3}{1}};
\addlegendentry{TD-like Fit for Stra};

\end{axis}

\end{tikzpicture}

\end{document}

ここに画像の説明を入力してください

関連情報