How can i get matrix element for a complex values?
Afficher commentaires plus anciens
i want to put a complex values (ex 1+ 1i) in
3x3 matrix at 1,1 element
how can i make it ?
Réponses (2)
KALYAN ACHARJYA
le 25 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 25 Nov 2019
Just as other number,
mat=[1 2 2+3i;4 5 7;6 10 2]
Bhaskar R
le 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
1 commentaire
Bhaskar R
le 25 Nov 2019
For more details on MATLAB array indexing see help
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!