Figure ploting data problem
2 ビュー (過去 30 日間)
古いコメントを表示
Hello Matlab gurus! I have such code
if true
% code
matrix1={'1/1/2013';'2/1/2013';'3/1/2013'};
matrix2=[4;5;6];
x=datenum(matrix1);
plot(x,matrix2);
end
we get such graph
as you see on the axis it has converted time series but i want to have it original date values.
Any idea would be great help.
Waiting for your response.
0 件のコメント
採用された回答
Mischa Kim
2014 年 9 月 11 日
Giorgi, add after the plot command
set(gca,'XTick',x,'XTickLabel',matrix1)
to change the tick labels.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!