dengdan890730

基本表示

\[C = R + Ij \]

  • \(R\): 实部, Real
  • \(I\): 虚部, Imaginary.
  • \(j^2 = -1\)

用复平面表示

二维平面, \(x\)表示实部, \(y\)轴表示虚部,则虚数可以表示为一个二元组:

\[C = (R, I) \]

用复平面上的极坐标表示

\[C = |C|(cos \theta + jsin \theta) \]

其中:

  • \(|C| = \sqrt(R^2 + I^2)\)
  • \(\theta = arctan(\frac RI) \in [-\pi, pi]\).numpy.arctan2(I, R), matlab: atan(I, R)

代入欧拉公式表示

欧拉公式:

\[e^{j\theta} = cos\theta + jsin\theta \]

得到:

\[C = |C|e^{j\theta} \]

分类:

技术点:

相关文章:

  • 2022-02-05
  • 2021-10-14
  • 2022-12-23
  • 2022-01-27
  • 2021-09-03
  • 2022-01-21
猜你喜欢
  • 2021-12-12
  • 2021-10-21
  • 2021-06-25
  • 2021-12-02
  • 2021-11-06
  • 2022-01-05
  • 2021-12-06
相关资源
相似解决方案