How to draw line logarithmic x axis and y axis

3 次查看(过去 30 天)
Hi All,
I have some financial data price and time.
I need to plot it on a chart, however, i want the Y axis to be a log scale and the x axis to be a log scale
so both need to be log scaled.
How can i do this?
  6 个评论
Rizwan Khan
Rizwan Khan 2020-9-13
@Adam - Can you expand a little further on what your suggesting, i didn't quite understand you

请先登录,再进行评论。

回答(2 个)

Mario Malic
Mario Malic 2020-9-7
  3 个评论
Rizwan Khan
Rizwan Khan 2020-9-7
This is the error i get when using loglog or even plot with the time data format above
It wants a numeric
Error using loglog
Data inputs must match the axis configuration. A numeric axis must have numeric data inputs or data inputs which can be converted to double.
Rizwan Khan
Rizwan Khan 2020-9-7
I tried using xtickformat('yyyy-MM');
However, i then get the error that this time format does not support log scale?
The coordinate system or ruler class does not support log axis scale.

请先登录,再进行评论。


Adam Danz
Adam Danz 2020-9-14
编辑:Adam Danz 2020-9-14
Convert the dates to duration from the starting date but use the numeric form of the durations (ie, not the "duration' class). Then you're just working with regular old numbers that can sustain the log scale.
If you want to see the date for each point, add the dates to the datatips.
Demo:
% Create date-time vector and data
dt = datetime(2020,1,1) + days(0:5:365);
data = exp(1:numel(dt));
% Compute number of days since the start of dt.
ndays = days(dt - dt(1));
% Plot data and show starting date in xlabel
h = loglog(ndays,data, 'o');
xlabel(sprintf('Number of days since %s',datestr(dt(1))))
% Now add the dates to each marker in their datatip.
h.DataTipTemplate.DataTipRows(end+1) = dataTipTextRow('Date',dt);
X is the number of days since the first datetime value.
Date shows the datatime value for each data point.

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by