Curve fitting & Plotting On Logarithmic y, linear x

조회 수: 8 (최근 30일)
ADSW121365
ADSW121365 2019년 4월 12일
편집: Matt J 2019년 4월 15일
I have a plot which looks something like this;
Capture.PNG
Which is a pretty nice plot upon which I'd like to curvefit. Within the curvefitting toolbox I can either input the data as plotted here, however the y axis remains linear giving me a horrible plot;
Capture2.PNG
And means the curvefitting is wrong. The next option is to input log(Ydata) which allows me curvefit to the dataset as I'm interested in it (note these are meaningless sample plots);Capture3.PNG
The issue being my yaxis is then effectively meaningless data. What I effectively wish to do is have the curvefit seen last plotted with the y axis from the first plot.
Can anyone help?

채택된 답변

Matt J
Matt J 2019년 4월 12일
편집: Matt J 2019년 4월 12일
You can change the scale of the plot from linear to log just by doing
hAx.YScale='log';
where hAx is a handle to your axis.
  댓글 수: 2
ADSW121365
ADSW121365 2019년 4월 15일
This doesn't do anything to the plot window within the curve fitting toolbox which is where I need to change the yaxis.
I have unlogged y data which I wish to display against a log scale and then curvefit to. Most other options require logging the ydata before entry to curvefitting which then gives me a meaningless yscale on my actual plot or fitting to unlogged y data, outputting to a plot and then changing the yscale but of course the fit then doesn't match the data anymore
Matt J
Matt J 2019년 4월 15일
편집: Matt J 2019년 4월 15일
Well, that is a nuisance, but you can re-open the plot in a separate window (use the drop-down menu option File>Print to Figure). There, you will have full control over the axes scales, and can adjust YScale as in my original answer.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by