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개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 11월 25일
편집: KALYAN ACHARJYA 2019년 11월 25일
Just as other number,
mat=[1 2 2+3i;4 5 7;6 10 2]
Bhaskar R
Bhaskar R 2019년 11월 25일
% 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일

댓글:

2019년 11월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by