How can i get matrix element for a complex values?

i want to put a complex values (ex 1+ 1i) in
3x3 matrix at 1,1 element
how can i make it ?

回答(2 个)

% suppose a fake matrix with size 3x3
>> A = rand(3);
A =
0.7922 0.0357 0.6787
0.9595 0.8491 0.7577
0.6557 0.9340 0.7431
% assign a complex value at loation (1, 1)
>> A(1, 1) = 1+1i;
A =
1.0000 + 1.0000i 0.0357 + 0.0000i 0.6787 + 0.0000i
0.9595 + 0.0000i 0.8491 + 0.0000i 0.7577 + 0.0000i
0.6557 + 0.0000i 0.9340 + 0.0000i 0.7431 + 0.0000i

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

评论:

2019-11-25

Community Treasure Hunt

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

Start Hunting!

Translated by