指数趋势线最适合 IV 曲线数据

指数趋势线最适合 IV 曲线数据

我正在尝试绘制齐纳二极管 IV 曲线的最佳拟合趋势线。数据呈指数增长,因此线性回归不适用于此情况。

这是我的数据。重要的列是 2 和 3,分别是电流和电压。在本例中,电流数据被绘制为电压的函数。

第 1 列,第 2 列,第 3 列

-15.0,-13.33,-0.71

-11.2,-9.71,-0.696

-7.50,-6.30,-0.675

-3.76,-3.45,-0.636

0,0,0

3.76,3.00,0.639

7.51,6.56,0.676

11.2,10.16,0.696

15,13.7,0.71

以下是我正在使用的代码的一部分:

\documentclass{article}
\usepackage{tikz, pgfplots, pgfplotstable, siunitx}

\usepgfplotslibrary{units}

\sisetup{
  round-mode = places,
  round-precision = 2,
}

\begin{document}

  \begin{figure}[h!]
    \begin{center}
    \begin{tikzpicture}
      \begin{axis}[
          width=\linewidth,
          grid=major, 
          grid style={dashed,gray!30},
          xlabel=Voltage, 
          ylabel=Current,
          x unit=\si{\volt}, 
          y unit=\si{\milli\ampere},
          legend style={at={(0.5,1.4)},anchor=north},
          x tick label style={rotate=90,anchor=east}
        ] 
        \addplot [only marks, mark = *, blue] table[x=column 3,y=column 2,col sep=comma]{tables/Table 6.csv};
        \addlegendentry{$y(x)$}
      \end{axis}
    \end{tikzpicture}
    \caption{Zener diode reverse bias}
  \end{center}
  \end{figure}

\end{document}

相关内容