atan2

atan2() 函数与 pgfplots 的意外行为
atan2

atan2() 函数与 pgfplots 的意外行为

嗨,我想绘制一些类似 Bode 的图,atan2() 函数似乎在某些值组合下无法正常工作。我设法重新创建了最小工作代码来显示问题: 我正在使用 atan2() 函数,该函数对 x 和一些定义为 declared 的参数具有非平凡依赖性function=: \documentclass{standalone} \usepackage{tikz} \usepackage{pgfplots} \pgfplotsset{compat=1.18} \begin{document} \begin{tikzpicture}[ declare fun...

Admin

根据 atan x 评估旋转
atan2

根据 atan x 评估旋转

我想用斜率(在问题中前面计算)以 atan x 的形式表示切线的旋转角度。我可以使用角度让它工作,但我不想先手动计算。我希望黑线最终位于红线所在的位置,使用与黑线类似的计算。 \documentclass[tikz]{standalone} \begin{document} \begin{tikzpicture}[xscale=0.4, yscale=0.1] % draw axis \draw (-1.5,0) -- (6.5,0); \draw (0,-10) -- (0,15); ...

Admin

将笛卡尔坐标转换为极坐标
atan2

将笛卡尔坐标转换为极坐标

我正在使用 tikz。 我想画一条与另一条线成直角且具有一定长度的线。 坐标定义为笛卡尔坐标。 我正在寻找一个函数来导出现有线的倾斜角,以便我可以方便地通过极坐标定义新线 (或任何其他方便的解决方案)。 先感谢您! ...

Admin

如何绘制 atan2(x,y)?
atan2

如何绘制 atan2(x,y)?

我如何绘制像维基百科图片那样的 atan2(y,x) https://en.wikipedia.org/wiki/Atan2#/media/File:Atan2_diagram.svg 我试过 \documentclass{standalone} \usepackage{pgfplots} \pgfplotsset{compat=1.10} \begin{document} \begin{tikzpicture} \begin{axis}[ xlabel=$x$, ylabel=$y$, axis lines=center, % use fpu=f...

Admin