PGFplot:读取表格并减去列(错误)

PGFplot:读取表格并减去列(错误)

我尝试对我读入的列进行一些简单的数学运算,但是当我尝试将这些列彼此相减时(即,不进行减法似乎也可以),我收到了错误消息:

 Package PGF Math Error: Could not parse input '' as a floating point number, sorry. The unreadable part was near ''. (in '- '). ... (x=0) Y}, col sep=comma] {clipped3.csv};

不幸的是,它似乎可以与我的小示例一起使用,但如果我使用我想要处理的 csv 文件,它就不再起作用了,有线索吗?

\documentclass{standalone}

\usepackage{pgfplots}


\begin{filecontents*}{file1.csv}
/vdda! (x=0) X,/vdda! (x=0) Y,/input (x=0) Y
3.34529984540E-05,1.2,0.600843092
3.35459699742E-05,1.2,0.600842796
3.36089849871E-05,1.2,0.600842484
3.36720000000E-05,1.2,0.600842102
\end{filecontents*}

\begin{document}
\begin{tikzpicture}
\begin{axis}[ymin=0, ymax=1.3]
\addplot 
table [x expr=\thisrow{/vdda! (x=0) X}, y expr=\thisrow{/vdda! (x=0) Y} - \thisrow{/input (x=0) Y}, col sep=comma] {clipped3.csv};
\end{axis}
\end{tikzpicture}
\end{document}

clipped3.csv

相关内容