Clear Filters
Clear Filters

Normalize columns of matrix with complex data?

12 views (last 30 days)
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 Comments
belle
belle on 20 Jan 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 on 20 Jan 2017
worked out how to do it in MATLAB! :)

Sign in to comment.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays 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!