Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下表达式:z = 4e−2j(2−3j)/(√3e2j)
我必须在 MATLAB 中得到这个表达式的极坐标和笛卡尔形式。我已经做了一些研究,但我找不到办法做到这一点..
有人可以解释我该怎么做吗?
谢谢
你可以定义
z = 4*exp(2*j) * (2-3*j) / sqrt(3*exp(2*j));
然后计算
abs(z) % modulus (magnitude) angle(z) % argument (phase) in radians real(z) % real part imag(z) % imaginary part
那是你要的吗?