How can i get matrix element for a complex values?

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

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 25 Nov 2019
Edited: KALYAN ACHARJYA on 25 Nov 2019
Just as other number,
mat=[1 2 2+3i;4 5 7;6 10 2]

Bhaskar R
Bhaskar R on 25 Nov 2019
% 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

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!