Assign value to individual components of the complex number

2 次查看(过去 30 天)
I'd like to assign the value to individual components of the complex numer.
>> x = 1;
>> y = 1;
>> H = complex(x,y);
Now I'd like to change the only real part and only the imaginery part
pseudocode: H.real = 10;
pseudocode: H.imag = 10;
and expecting
pseudocode answer: H = 10+10i
How to do it in Matlab?

回答(1 个)

Matt J
Matt J 2022-11-4
H=complex(10,imag(H))
H=complex(real(H),10)
  8 个评论
Matt J
Matt J 2022-11-7
You're quite welcome, but if you are happy with the answer, please Accept-click it.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by