making `errorbar` work with `datetime`

조회 수: 26 (최근 30일)
Pankaj
Pankaj 2019년 8월 22일
답변: Lei Hou 2019년 8월 27일
I would like to plot errorbar with datetime on x-axis
x = datetime(['21-Aug-2019'; '22-Aug-2019'; '23-Aug-2019']);
y = [100; 110; 130];
figure
plot(x,y, '.')
hold on
errorbar(x, y, 20)
The final error produces this error
Error using errorbar (line 76)
Input arguments must be numeric or objects which can be converted to double.
Even the following produces error
errorbar(datenum(x), y, 20*ones(size(y)))
I am using R2016b

채택된 답변

Sai Sri Pathuri
Sai Sri Pathuri 2019년 8월 26일
The errorbar function does not accept datetime object as an input argument. Try to use datenum function to declare the input and note that the third argument must have same size as y.
When you are using the following function,
errorbar(datenum(x),y,20*ones(size(y)));
Try to use the datenum(x) instead of x in plot to avoid the error.
plot(datenum(x), y,'.');

추가 답변 (1개)

Lei Hou
Lei Hou 2019년 8월 27일
Sai is correct that errorbar doesn't yet support datetimes. I've made an enhancement request, and hopefully errorbar will be updated in a not-too-distant upcoming release.

카테고리

Help CenterFile Exchange에서 Errorbars에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by