log function returning complex answers where there should be none

조회 수: 10 (최근 30일)
Sandra Levin
Sandra Levin 2020년 2월 25일
답변: Priyanshu Mishra 2020년 2월 28일
So I have a 22*9 matrix. with 22 regions and 9 years. I am doing a decomposition analysis where need to calculate different factors contribution to the overalla change in total carbon emissions, between each set of years, for each region.
For some reason however, my code returns complex answers (for both Ln(r,m) and DeltaCO2CI) when there should only be real numbers. Can't figure out what i have done wrong?
here's the problematic part of the code:
DeltaCO2CI=zeros(21,9);
for r=2:22
for m=2:9
Ln(r,m)=(co2r(r,m)-co2r(r,m-1))./(log(co2r(r,m)-co2r(r,m-1))));
DeltaCO2CI(r,m)=sum((Ln(r,m)).*log(CI(r,m)./CI(r,m-1))));
end
end
  댓글 수: 2
Adam
Adam 2020년 2월 25일
Have you broken it down on command line to work out which component is yielding the complex number? Put a breakpoint in and put each component onto the command line to pin down which is complex. Just looking at the code I have no idea, especially as I have no idea what is in the variables being referenced.
Stephen23
Stephen23 2020년 2월 25일
"Can't figure out what i have done wrong?"
This operation returns one or more negative values:
co2r(r,m)-co2r(r,m-1)

댓글을 달려면 로그인하십시오.

답변 (1개)

Priyanshu Mishra
Priyanshu Mishra 2020년 2월 28일
Hi Sandra,
The complex values might be coming because value of co2r(r,m)-co2r(r,m-1) is negative. I would suggest you to put a break point and debug why these values are coming negative.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by