Inaccuracy in a loglog(...) plot, compared to a standard plot(...)

조회 수: 5 (최근 30일)
Adam Wisam
Adam Wisam 2020년 9월 27일
댓글: Adam Wisam 2020년 9월 27일
Hello,
I have this wierd problem, or I might just be missing something. I have 2 points and I'm trying to interpolate linearly between them. I used a very simple linear interpolation formula, and got the result 2.3672... I confirmed this using an online calculator. However, when plotting the intersection using loglog(...) it seems that the result is around 2.3686... Plotting using the standard plot(...) gives the first, calculated, result. When reading the values of the graphs im zooming very far in, so there is no chance that I misread the values.
I could post the code, but I think the answer has something to do with Matlab's behaviour and not my code. Also I tried using set(gca, 'XScale', 'log', 'YScale', 'log') instead of loglog, still the same results.

채택된 답변

David Goodmanson
David Goodmanson 2020년 9월 27일
편집: David Goodmanson 2020년 9월 27일
HI Adam,
I am assuming that you are doing something like
x = [1 2]
y = [2,3]
plot(x,y)
and then zooming in on the plot at, say, x = 1.6 to find finding the result y = 2.6. Doing the same thing on a loglog plog gives y = 2.63. But this is not inaccuracy, it's just a different situation. The regular plot draws the straight line y = a + b*x, but the loglog plot draws straight lines in log, so the line is log10(y) = a + b*log10(x) which is a different functional dependence of y on x. So you get a different answer.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Two y-axis에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by