Azzera filtri
Azzera filtri

Normalize columns of matrix with complex data?

12 visualizzazioni (ultimi 30 giorni)
I have an array with complex values and I want to normalise the columns. I tried normc(array). But the error is: Data is complex. Is there a way to get around this?
  6 Commenti
belle
belle il 20 Gen 2017
Take each element and multiply by its complex conjugate, so the elements would become real. Square each element and add together. To normalise, divide by sqrt of the sum of the squares.
belle
belle il 20 Gen 2017
worked out how to do it in MATLAB! :)

Accedi per commentare.

Risposta accettata

Adam
Adam il 20 Gen 2017
array = array ./ ( sum( ( array .* conj(array) ).^2 ) ).^0.25
  1 Commento
Amit Sravan Bora
Amit Sravan Bora il 19 Ago 2022
@adam Hi, is that the frobenius norm that you're dividing the matrix with?
Thanks

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by