Inverse of individual matrix element (complex variables)

26 vues (au cours des 30 derniers jours)
Abbey
Abbey le 26 Fév 2017
Commenté : Birinder Kahlon le 17 Nov 2020
Hello,
Anyone please help, how can I invert each data of an NxN matrix with complex values. Say for example
A = [.02+.04i .01+.03i; .02+.04i .01+.03i]
into
B = [10-20i 10-30i; 10-20i 10-30i];
I tried A^-1 and 1/A but it yield a different answer. Looking forward for your help. Thank you.

Réponse acceptée

Steven Lord
Steven Lord le 26 Fév 2017
Perform elementwise division.
A = [.02+.04i .01+.03i; .02+.04i .01+.03i];
B = 1./A
  3 commentaires
Muiz Vhora
Muiz Vhora le 4 Nov 2018
I tried doing this for a matrix with some zero values, I am getting INF in the inverse matrix. I have to use it for further calculations but INF does not look good.
Birinder Kahlon
Birinder Kahlon le 17 Nov 2020
you're dividing by zero

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by