for i = 1:length(RVs)
for j=1:length(MVs)
load(data)% load some data.
sumRRE(j) = mean((RRE< 1e-10));
end
RREs(:,i) = sumRRE;
clear summRRE;
end
% in the end RREs is a matrix of 9-by-10
RV = [10:10:100]; % x-axis
MV = 0.1:0.1:0.9; % y- axis
imagesc(RV,MV,RREs);
colorbar()
以下のコードは Matlab で動作します。しかし、LaTeX でも同じことができるか疑問に思っています。LaTeX のプロットの方がはるかに優れているからです。私の RRE マトリックスは 9 x 10 次元です。以下は私の試みですが、動作しません。リンクデータファイルに追加して試してみます。よろしくお願いします。
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel={Missing Value Prop},
ylabel={Rendezvous Prop},
xtick={10, 20, ..., 100},
ytick={0.1, 0.2, ..., 0.9},
y dir=reverse,
colormap={mycolormap}{color=(white) color=(blue)},
colorbar,
point meta min=0,
point meta max=1,
]
\addplot[matrix plot*, mesh/rows=9] table [x index=0, y index=1, meta index=2] {data.dat};
\end{axis}
\end{tikzpicture}
\end{document}
答え1
テーブル内の x 値と y 値を指定する必要があるため、テーブル形式はx y C
C マトリックス (ここでは RRE マトリックス) ではなく にする必要があります。データを LaTeX の正しい形式に変換するために、Matlab コードにいくつかの行を追加しました。
(未定義の変数があるため Matlab コードを実行できませんでしたが、代わりにリンクされたデータをロードすることでループを完全にスキップできました。)
load("data2.dat")
RREs = data2;
% in the end RREs is a matrix of 9-by-10
RV = 10:10:100; % x-axis
MV = 0.1:0.1:0.9; % y- axis
figure(1)
colormap(flipud(gray))
imagesc(RV,MV,RREs);
colorbar()
% Transform the data into table format for Latex
[X,Y] = meshgrid(RV,MV);
data_table = [reshape(X',[],1), reshape(Y',[],1), reshape(RREs',[],1)];
writematrix(data_table,"data_trafo.dat","Delimiter",'\t')
これで、コードはほぼ正常に動作します。LaTeXpoint meta=explicit
が指定された数値ポイント データを期待して使用するためのオプションを追加しただけです。
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel={Missing Value Prop},
ylabel={Rendezvous Prop},
xtick={10, 20, ..., 100},
ytick={0.1, 0.2, ..., 0.9},
y dir=reverse,
colormap={mycolormap}{color=(white) color=(blue)},
colorbar,
point meta min=0,
point meta max=1,
]
\addplot[matrix plot*, mesh/rows=9, mesh/cols=10,point meta=explicit] table [x index=0, y index=1, meta index=2] {data_trafo.dat};
\end{axis}
\end{tikzpicture}
\end{document}