使用文字绘图

使用文字绘图

我可以使用 pgfplots 绘制带有数字的函数,但是如何绘制类似下图的东西呢?

带文字的函数

弯曲部分对应于具有负参数的指数。

答案1

\begin{tikzpicture}
\draw[->] (-1,0) -- (5,0) node [below] {$t$};
\draw[->] (0,0) -- (0,4.5)  node [left] {$v(t)$};

\draw [domain=-1:0, scale=1,red,very thick] plot (\x,1);
\draw [domain=0:5, scale=1,red,very thick] plot (\x,{3*(1-exp(-\x))+1}); 
\draw [domain=0:5, scale=1, dashed,blue] plot (\x,4); 

\node[right] at (0,1) {$V_0$} ;
\node[left]   at (0,4) {$V_s$} ;
\end{tikzpicture}

相关内容