applying log to matrix converts from real to complex: why?

29 views (last 30 days)
Hello everyone,
I'm experiencing a very strange behaviour from matlab: I have a 132x4 matrix of real numbers and I need to take their logs. Of course, if I take each number's log individually, it works fine. If I instead use the function log on the whole matrix transf = log(matrix); numbers are converted to their logs from row 1 to 64, but from row 65 to the end they are converted to complex numbers (NaNs as well).
What can this be caused by?
Thanks in advance

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 21 Sep 2012
Edited: Azzi Abdelmalek on 21 Sep 2012
maybe you have negativ numbers
log(-1.5)
it's a complex logarithm
  2 Comments
mattia
mattia on 21 Sep 2012
ok very stupid of me, just noticed there were some negative zeros, thanks for the suggestion!
Wayne King
Wayne King on 21 Sep 2012
but that does not explain your claim of NaNs or that there is a difference between taking the log of individual elements and the log of the matrix.

Sign in to comment.

More Answers (1)

Wayne King
Wayne King on 21 Sep 2012
Edited: Wayne King on 21 Sep 2012
It makes perfect sense to me that log() can produce complex numbers, but I'm confused by the NaNs. Can you give an example of an entry in your matrix such that log(that_entry) = NaN?
Also, can you create a small matrix example such that the log of the individual elements is different than when you apply log() to the matrix.
a = randn(4,4);
log(a)
Whether they are in a matrix or not should not matter.
  2 Comments
mattia
mattia on 21 Sep 2012
yes that is what i meant. since in position 64,1 there was a negative number, i guess it treated all subsequent values as complex, so NaNs became Nan+00000000i

Sign in to comment.

Products

Community Treasure Hunt

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

Start Hunting!