displaying complex numbers

17 ビュー (過去 30 日間)
Edward
Edward 2012 年 3 月 23 日
コメント済み: Apoorv Somkuwar 2020 年 9 月 17 日
how do you display a complex number

回答 (2 件)

Wayne King
Wayne King 2012 年 3 月 23 日
z = 1+1j
quiver(0,0,real(z),imag(z))
is one way, so that
z = 1+1j;
w = 3-1j;
quiver(zeros(2,1),zeros(2,1),real([z w]'),imag([z w]'))
xlabel('Re(z)'); ylabel('Im(z)');
  1 件のコメント
Apoorv Somkuwar
Apoorv Somkuwar 2020 年 9 月 17 日
My command prompt displays only Re(z)
If I write z = 1+5i, the workspace will store z = 1+5i but my command prompt displays it as z = 1.
How do I change this?
TIA

サインインしてコメントする。


Bill Kersting
Bill Kersting 2018 年 7 月 20 日
A matrix consists of complex elements. How do I display the elements of the matrix in decimal form rather than scientific form?
  3 件のコメント
Bill Kersting
Bill Kersting 2018 年 7 月 21 日
My problem is I am an doing power system analysis and have voltages in the magnitude near 8000. This is actually a vector. I can display the real and imaginary parts but they come out in scientific notation. I want to display like 7500 volts at an angle of 30.00 degrees For a three-phase system the vector will be three deep each with a desired magnitude and angle.
vineel chandra
vineel chandra 2019 年 4 月 5 日
if complex number is x
fprintf('%f+i%f \n',real(x),imag(x));

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by