log function returning complex answers where there should be none

21 次查看(过去 30 天)
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